html, body {
    height: 100%;
    background-color: #232C3E;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.navbar {
    position: relative !important;
}

.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-section {
    margin-top: 40px;
    text-align: center;
}

.about-h1 {
    color: #70A0FF;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.about-subtext {
    font-size: 1.25em;
}

.about-header hr {
    background-color: #70A0FF;
    height: 3.5px;
    margin-top: 35px;
    margin-bottom: 20px;
    width: 40%;
}

#coverage i {
  /*was 1.5*/
    margin-right: 0.8rem;
}

.circles {
    /* display: flex; */
    display: none;
    font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
}

.circle-with-text {
    background: #2f446c;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    text-align: center;
    margin: 5px 20px;
    font-size: auto;
    padding: 15px;
    display: block;
    height: 180px;
    width: 180px;
    color: #fff;
    padding-top: 50px;
}

@media screen and (max-width: 660px) {
    .circles {
         flex-wrap: wrap;
         align-items: center;
         justify-content: center;
     }
 }

 @media screen and (min-width: 416px) {
    footer {
        bottom: 0;
        left: 0;
        position: relative;
        width: 100%;
        flex-shrink: 0;
    }
 }

.num {
    font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
    font-size: 47px;
}

.loader {
    border: 12px solid #2f446c;
    /* Light grey */
    border-top: 12px solid #70A0FF;
    /* Blue */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1.5s linear infinite;
}

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

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

/* footer {
    position: fixed;
    bottom: 0;
    width: 100%;
} */
