@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
body{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;

}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #276037;
}

::-webkit-scrollbar-thumb:hover {
    background: #20b149;
}
.top-head{
    height: auto;
    display: flex;
    align-items: center;
    background: #8adea6;
    text-align: center;
}
.About{
    display:flex;
    font-weight: 600;
    margin-top: 24px;
    font-size: 24px;
    color:white;
}
.About img{
    width: 50px;
    height: 40px;
}
.Logo{
    display:flex;
}
.Logo img{
    width: 90px;
}
.Menu{
    display:flex;
    margin-top:30px;
}
.Menu ul{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}
.Menu ul li {
    margin: 0 15px; /* Khoảng cách ngang giữa các mục menu */
}
.Menu ul li a{
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}
.Menu ul li a :hover{
    background-color: aquamarine;
    color:#8adea6;
}
@media screen and (max-width: 768px) {
    /* Ẩn phần About và Menu trên điện thoại */
    .About,
    .Menu {
        display: none;
    }
    /* Căn giữa logo */
    .Logo {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

