* {
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    justify-content: center;
}
div.logo img {
    width: 250px;
}
div.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 3rem;
    min-height: 400px;
}
div.title {
    font-size: 20px;
    font-weight: 500;
}
div.text {
    font-size: 12px;
}
div.loading {
    padding: 20px;
    display: flex;
    flex-direction: row;
    font-size: 13px;
    gap: 0.3em;
}
div.loading .dot {
    animation-name: jump;
    animation-duration: 1600ms;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    display: block;
    border-radius: 50%;
    height: 1em;
    width: 1em;
}
.hidden {
    display: none !important;
}

div.loading .dot:nth-of-type(1) { background-color: #4a89dc; animation-delay: 70ms; }
div.loading .dot:nth-of-type(2) { background-color: #967adc; animation-delay: 140ms; }
div.loading .dot:nth-of-type(3) { background-color: #da4453; animation-delay: 210ms; }
div.loading .dot:nth-of-type(4) { background-color: #f6b042; animation-delay: 280ms; }
div.loading .dot:nth-of-type(5) { background-color: #37bc9b; animation-delay: 350ms; }

@keyframes jump {
    0% {
        transform: translateY(0px);
    }
    30% {
        transform: translateY(0px);
        opacity: 1;
    }
    45% {
        transform: translateY(-1.2em);
        opacity: 0.5;
    }
    60% {
        transform: translateY(0.8em);
        opacity: 0.95;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
