body {
    position: relative;
    padding-top: 50px;
    padding-bottom: 20px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

h {
    font-family: 'Roboto', sans-serif;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

/* Circles */
.fas.display-circle {
    width: 73px;
    background: url(../images/cir.png) no-repeat;
    padding: 26px;
    font-size: 24px;
    font-family: FontAwesome;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* FLEX */
.flex-container {
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
} /* Alternatively, use d-flex */

.flex-item {
    margin: auto;
}

.flex-container.header {
    flex-wrap: wrap-reverse;
}

.vertical-align {
    align-self: center;
}

.bottom-align {
    align-self: flex-end;
}

.top-align {
    align-self: flex-start;
    margin-top: 0px;
}

