/* MASTHEAD */
.masthead {
    height: calc(100vw * 0.15625);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 576px) {
    .masthead {
        height: calc(100vw * 0.15625);
    }
}

.masthead__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #000;
}

@media (min-width: 576px) {
    .masthead__heading {
        font-size: 2.5rem;
    }
}

.masthead__description {
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    font-size: 80%;
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .masthead__description {
        font-size: 100%;
    }
}


