.masthead {
    background-size: cover;
    min-height: 60vh;
    position: relative;
    color: white;
    text-shadow: 2px 2px 2px rgba(0,0,0,.5);
}

h1 {
    font-family: 'Questrial', sans-serif;
    font-size: 5rem;
    font-weight:Bolder;
}

.color-overlay {
    position: absolute;
    background: linear-gradient(250deg, rgba(0,209,45,0.60) 30%, rgba(0,115,210,0.70) 94%);
    height: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .masthead {
        min-height: 40vh;
    }
    h1 {
        font-size: calc(1.25rem + 3.3vw);
    }
}