html, body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #0B0F28;
}

#container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #bfc9d0;
    font-family: 'Selawik', system-ui, sans-serif;
}

#spinner_container {
    position: relative;
    width: 48px;
    height: 48px;
}


#container .main_text {
    font-size: 1.5rem;
}

.spinner {
    width: 48px;
    height: 48px;
    position: absolute;
    animation: spin 3.5s linear infinite;
}

.spinner .dot {
    top: 30px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: white;
    position: relative;
}

@keyframes spin {
    30% {
        transform: rotate(220deg);
    }

    40% {
        transform: rotate(450deg);
        opacity: 1;
    }

    75% {
        transform: rotate(720deg);
        opacity: 1;
    }
    76% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: rotate(0);
    }
}


.spinner:nth-child(1) {
    animation-delay: 0.15s;
}

.spinner:nth-child(2) {
    animation-delay: 0.3s;
}

.spinner:nth-child(3) {
    animation-delay: 0.45s;
}

.spinner:nth-child(4) {
    animation-delay: 0.6s;
}

.spinner:nth-child(5) {
    animation-delay: 0.75s;
}

.spinner:nth-child(6) {
    animation-delay: 0.9s;
}