html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#root {
    height: 100%;
    width: 100%;
    position: fixed;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#bootloader-container {
    background: #ffffff;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#loading-metadata {
    color: gray;
    font-size: 14px;
    text-align: center;
}

.logo-container {
    width: 50%;
    transition: all 500ms;
    margin-bottom: 32px;
}

#loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.spinner {
    width: 48px;
    height: 48px;
    border: 6px solid #eee;
    border-top: 6px solid rgb(130, 35, 210);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.loading-message {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 24px;
}
