/* Loading screen styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

/* Zoom in & out animation */
@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2); /* Zoom in */
    }
    100% {
        transform: scale(1); /* Zoom out */
    }
}

/* Apply animation to the loading image */
.loading-content img {
    width: 100px;
    animation: zoomInOut 2s infinite; /* 2 seconds duration, looping infinitely */
}

/* Fade-out effect */
#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}
