#loading-screen {
    height: 100vh !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center !important;
    flex-direction: column;
    gap: 35px;
    font-size: large;
}

.spinner {
    display: flex;
    justify-self: center;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 170px;
    height: 170px;
    animation: spin .9s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}