#hero {
    height: 100vh;
    background-image: url(../img/hero.jpg);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 20px;
}

#heroTitle {
    padding-top: 80px;
    color: #F7F4D8;
    font-size: 80px;
    font-style: normal;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#heroSubtitle {
    color: #F7F4D8;
    font-family: Libre Baskerville;
    font-size: 34px;
    font-style: italic;
    line-height: 96%; /* 57.6px */
    text-transform: lowercase;
    margin-bottom: 60px;
}

#heroButton {
    color: #3E1F21;
    font-variant-numeric: lining-nums tabular-nums;
    font-size: 28px;
    font-style: normal;
    line-height: 100%; /* 38.7px */
    letter-spacing: 1.935px;
    border-radius: 8.6px;
    background: #F9D9C8;
    padding: 20px 28px 14px;
}

@media (max-width: 800px) {
    #hero {
        background-image: url(../img/hero-mobile.jpg);
        justify-content: flex-start;
    }

    #heroTitle {
        padding-top: 180px;
        font-size: 40px;
    }

    #heroSubtitle {
        font-size: 20px;
        max-width: 250px;
    }

    #heroButton {
        font-size: 20px;
        padding: 10px 15px 7px;
        border-radius: 5px;
    }
}