/* Resetting some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000000; /* Dark background for the whole page */
    color: #fff; /* Light text color */
    text-align: center;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8); /* Dark semi-transparent background */
    z-index: 9999;
}

/* Loader styling */
#loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-inner {
    display: flex;
    gap: 15px;
}

.circle {
    width: 30px;
    height: 30px;
    background-color: #3498db; /* Blue circle color */
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
}

/* Animating the circles */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.circle:nth-child(2) {
    animation-delay: 0.2s;
}

.circle:nth-child(3) {
    animation-delay: 0.4s;
}

p {
    font-size: 18px;
    margin-top: 20px;
    color: #fff; /* White text for loading message */
}

/* Hiding content until loader is done */
#content {
    display: none;
}
