.hero {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100vw;
    height: 90vh;
    justify-content: center;
    align-items: center;
    background-image: url('img/coffeetastingpeopleupview.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -80%;
}

.heromobile {
    display: none;
    position: relative;
    flex-direction: column;
    width: 100vw;
    height: 90vh;
    justify-content: center;
    align-items: center;
    background-image: url('img/coffeetastingpeopleupview.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -80%;
}


@media (max-width: 768px) {

    .hero {
        display: none;
        position: relative;
        flex-direction: column;
        width: 100vw;
        justify-content: center;
        align-items: center;
        background-image: url('img/coffeetastingpeopleupview.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .heromobile {
        display: flex;
        position: relative;
        flex-direction: column;
        max-width: 100vw;
        height: 90vh;
        justify-content: center;
        align-items: center;
        background-image: url('img/coffeetastingpeopleupview.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .hero h1 {
        color: white;
        font-size: 2rem;
        align-self: center;
        text-align: center;
        padding: 6px 0;
        background-color: var(--sth-br-cl);
    }
}

