#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    z-index: 9999;
}

#preloader img {
    width: 200px; /* Adjust the size of the image */
    height: auto; /* Maintain aspect ratio */
}

.fade-in-out {
    animation: fade 1.5s infinite;
}

@keyframes fade {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}
