body, html {
    font-style: normal;
    height: 100%;
    font-size: 3.077vw;
    width: 100% !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Đảm bảo tính toán kích thước đúng */
}

*, body, html {
    padding: 0;
    margin: 0;
    font-family: PingFang SC;
    box-sizing: border-box;
}

* {
    outline: 0 none;
    box-sizing: border-box;
    word-break: break-word; /* Tránh tình trạng chữ bị tràn */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

a {
    border: none;
    text-decoration: none;
}

a, a:hover {
    transition: all .3s ease-out 0s;
}

a:focus {
    text-decoration: none;
}

img {
    border: none;
    vertical-align: middle;
    max-width: 100%; /* Đảm bảo hình ảnh co giãn theo kích thước bố cục */
}

#__next {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    min-height: 100%;
}

p {
    margin-bottom: 0;
}

::-webkit-scrollbar {
    width: 0;
}

::-webkit-scrollbar:horizontal {
    height: 0;
}

#myImage {
    position: absolute;
    top: -50px;
    left: -40px;
    transform: rotate(-30deg);
    width: 130px;
    height: auto;
    animation: zoomInOut 0.5s infinite ease-in-out;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: rotate(-30deg) scale(1);
    }
    50% {
        transform: rotate(-30deg) scale(1.2);
    }
}
