:root {
    --bg-color: #0079d8;
    --text-color: white;
}

html {
    font-size: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Arial, sans-serif;
    text-align: center;
    font-size: inherit;
    height: 100vh;
    width: 100vw;
    margin: 0;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.loading-circle {
    width: 3.125rem;
    height: 3.125rem;
    border: 0.375rem solid var(--text-color);
    border-top: 0.375rem solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

.update-page__message {
    margin: 0;
}

.update-page__skip {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: normal;
    cursor: pointer;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: var(--text-color);
}