div.hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 500;
    font-family: var(--headingFont);
    margin-bottom: 2.5rem;
}

.hero-content .container {
    padding-top: 21rem;
    color: var(--white);
}

@media (min-width: 768px) {
    .hero-content h1 {
        width: 40%;
    }
}

@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 5.5rem;
        width: 65%;
    }

    .hero-content h1,
    .hero-content button {
        margin-left: -4rem;
    }

    .hero-content .container {
        padding-left: 0;
    }

    .hero-content button {
        font-size: 2rem;
        padding: 2rem;
    }
}