/*
 * Baseline styles
 */
/*body {*/
/*    background: #222;*/
/*    text-align: center;*/
/*    padding: 20%;*/
/*}*/

p#_an {
    margin: 0;
    font-size: 1.2em !important;
    font-family: verdana, serif !important;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.pr {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* This makes it take the full height of the viewport */
}

body {
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #374151;
    background-color: #f2f4f6;
}

/*
 * Loading Dots
 * Can we use pseudo elements here instead :after?
 */
.loading_page_1 span {
    display: inline-block;
    vertical-align: middle;
    width: .6em;
    height: .6em;
    margin: .19em;
    background: #007DB6;
    border-radius: .6em;
    animation: loading_page_1 1s infinite alternate;
}

/*
 * Dots Colors
 * Smarter targeting vs nth-of-type?
 */
.loading_page_1 span:nth-of-type(2) {
    background: #008FB2;
    animation-delay: 0.2s;
}
.loading_page_1 span:nth-of-type(3) {
    background: #009B9E;
    animation-delay: 0.4s;
}
.loading_page_1 span:nth-of-type(4) {
    background: #00A77D;
    animation-delay: 0.6s;
}
.loading_page_1 span:nth-of-type(5) {
    background: #00B247;
    animation-delay: 0.8s;
}
.loading_page_1 span:nth-of-type(6) {
    background: #5AB027;
    animation-delay: 1.0s;
}
.loading_page_1 span:nth-of-type(7) {
    background: #A0B61E;
    animation-delay: 1.2s;
}

/*
 * Animation keyframes
 * Use transition opacity instead of keyframes?
 */
@keyframes loading_page_1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
