body,
html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overscroll-behavior-x: none;
}

#body-bg {
    background-color: #0B204B;
}

.welcome-to-alphanso {
    font-size: 30px;
    font-weight: 500;
    color: white;
}

.logo {
    width: 200px;
    height: 200px;
}

#loading-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.loading {
    position: relative;
}

.loader {
    border: 4px solid #FFFFFF;
    border-top: 4px solid #1CCAAA;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: spin 1s linear infinite;
}

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

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