h1 {
    text-align: center;
}

body {
    background-color: white;
    overflow-y: hidden;
    margin: 0;
    padding: 0;
}

#container {
    width: 100%;
    height: 100vh;
}

#load-container {
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
}

.loader-ring {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

    100% {
        transform: rotate(360deg);
    }
}
