.csschu {
    font-size: 64px;
}

.image-container {
    width: 100%;
    pointer-events: none;
    transform: translateY(calc(-50vh + 305px)) translateZ(0);
    overflow: hidden;
}
.text-\[128px\] {
    font-size: 118px;
}
img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease-in-out;
}

img:hover {
    transform: scale(1.05);
    /* Hiệu ứng zoom khi hover */
}

@media not all and (min-width: 410px) {
    .csschu {
        font-size: 41px;
        margin-bottom: 89px;
    }
}

.logo-container {
    display: inline-block;
    width: 80px;
    /* Adjust the size as needed */
    
    height: 80px;
    /* Adjust the size as needed */
    
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    animation: spin 10s linear infinite;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
