#splash-screen {
    background-color: #000;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fade-in 3.5s ease-in-out forwards;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: zoom-in 3.5s ease-in-out forwards;
    animation-delay: 2s; /* Delay the start of the animation by 2 seconds */
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1.0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        background-color: #000;
    }
}

img {
    max-width: 100%;
    height: auto;
}
