body {
    /* font-family: "Be Vietnam Pro", sans-serif; */
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 0.8rem;
}

a {
    color: black;
    text-decoration: none;
}

h1 {
    font-size: 1.2rem;
}

h2 {
    font-size: 1rem;
}

h3 {
    font-size: 0.8rem;
}

.title_site a {
    font-size: 1.2rem;
    text-decoration: auto;
    text-transform: uppercase;
}

.noidung .title {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 0 0 0px;
}

.noidung .description {
    background: #F2F2F2;
    padding: 10px;
    border-radius: 10px;
}

.noidung .channel {
    padding: 10px 0px;
}


.mycustombtn {
    font-weight: bold;
}

.post-box {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /*margin: 0rem 0 1.8rem;*/
    padding: 10px 5px;
   justify-content: space-between;
    height: 100%;
    padding: 8px;
    box-sizing: border-box;
         position: relative;
    height: 100%;
    overflow: hidden;
}

.post-box .description a {
    text-decoration: none;
}

.post-box:hover img {
    rotate: 2deg;
    border-radius: 10px;
    transform: scale(1.1);
}

.post-box img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s linear all;
}

.post-box .post-image {
    overflow: hidden;
}

.post-box a {
    font-weight: bold;
   
}

.post-box .description {
    padding: 10px;
    flex-grow: 1;
}

.post-box .post-details {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #492424;
    padding-top: 0.4rem;
    font-weight: bold;
    margin-top: auto;
}


.noidung .channel .signupBtn {
    width: 120px;
    height: 40px;
    border-radius: 30px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
    gap: 9px;
    color: white;
    background: linear-gradient(to right, rgb(128, 128, 255), rgb(183, 128, 255));
    position: relative;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.212);
}

.noidung .channel .arrow {
    position: absolute;
    right: 7.5px;
    background-color: rgb(255, 255, 255);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.noidung .channel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.noidung .channel .namechannel {
    font-weight: bold;
    margin: 0px;
}

.noidung .channel .signupBtn:hover .arrow {
    animation: slide-in-left 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}



@keyframes slide-in-left {
    0% {
        transform: translateX(-10px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}