body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 90%;
}

.logo-container img {
    width: 100%;
    max-width: 360px; /* 1/3 of 1080px */
    height: auto;
    animation: fadeInScale 2s ease forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .logo-container img {
        max-width: 90%;
    }
}


