html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.background-image {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    /* background-image: url('3_girls_mirror.jpg'); */
    background-image: none;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

@keyframes slideBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

.start-sliding {
    animation: slideBackground 8s ease-in-out forwards;
}

#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999; /* Ensure loader is on top of everything */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* Light gray border */
    /* border-top: 5px solid #3498db; Blue border on top */
    border-top: 5px solid #000000; /* Black border on top */
    border-radius: 50%; /* Circle shape */
    animation: spin 1s linear infinite; /* Rotate animation */
}

.content {
    padding: 20px;
    color: white;
    font-size: 24px;
}


/* html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.background-image {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-image: url('3_girls_mirror.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.content {
    padding: 20px;
    color: white;
    font-size: 24px;
} */
