body,
html {
    height: 100%;
    margin: 0px;
    background-color: #faeddf;
    color: #731112;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}


/* The hero image */

.hero-image {
    /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/banner.jpg");
    /* Set a specific height */
    height: 50%;
    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}


/* Place text in the middle of the image */

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.hero-text>h1 {
    font-family: 'Montez', cursive;
    font-size: 5em;
    margin: 0;
    color: #ffb52d;
}

.hero-text>h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2em;
    margin: 0;
    color: #ffebcd;
}

.sub-header {
    color: #dd5b28;
    font-family: 'Montez', cursive;
    font-size: 42px;
    /* font-weight: 600; */
    line-height: 1;
    text-align: center;
    margin: 1em;
}

.underline:after {
    content: " ";
    width: 75px;
    height: 3px;
    background: #ffa500;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5em;
}

.g-recaptcha {
    margin: 0 auto;
    width: 304px;
}