/**
 * Tệp này được dùng để chứa các kiểu dáng nền tảng, 
 * cơ bản nhất của website, chẳng hạn như cấu trúc HTML cơ bản, 
 * typography (phông chữ), reset CSS, các màu nền cơ bản hay 
 * các hình học chung không thuộc riêng một component đặc thù nào cả.
 */

/* Bắt đầu css dùng chung */
a {
    color: #044fcc;
    text-decoration: none;
}

a:hover {
    color: #0000ff
}

body {
    color: #233553;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #dedede;
    max-width: 640px !important;
    margin: 0 auto;
    touch-action: manipulation;
    /* Ngăn chạm 2 lần phóng to web*/
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

h1 {
    font-size: 18px;
}

h2 {
    font-size: 19px;
}

h3,
h4,
h5 {
    font-size: 17px;
}

#wrapper {
    /*margin: 10px auto;*/
    margin: 0;
    text-align: left;
    border-top: 1px solid #23292b;
    border-bottom: 25px solid #dedede;
    background-color: #f2f4f7;
}

.overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    position: fixed;
    background-color: rgb(10 10 11 / 50%);
    -webkit-tap-highlight-color: transparent;
}

.clear {
    clear: both;
    float: none;
}

/* Kết thúc css dùng chung */

/* Css hình ảnh trong bài viết */

.attachment-medium,
.size-full,
.size-medium {
    max-width: 100%;
    height: auto;
    border: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.alignleft {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
}

.alignright {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
}

.aligncenter {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
}

.wp-caption {
    background: #f2f4f7;
    border: 3px solid #f2f4f7;
    border-radius: 20px;
    max-width: 100%;
    /* Image does not overflow the content area */
    padding: 0 0 5px 0;
    margin: 5px 0;
    text-align: center;
}

.wp-caption p {
    padding: 0;
    margin: 0;
    line-height: 17px !important;
}

.wp-caption img {
    border: 0 none;
    border-radius: 20px 20px 0 0;
    height: auto;
    max-width: 99.5% !important;
    margin: 0;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-family: "tahoma" !important;
    font-size: 15px !important;
    font-style: italic !important;
    line-height: 20px !important;
    margin: 0;
    text-align: center !important;
}

/* Kết thúc Css hình ảnh trong bài viết */