.hero {
    position: relative;
    display: flex;
    justify-content: center;
    height: 200px;
}

@media (min-width: 768px) {
    .hero {
        height: auto;
    }
}

.hero picture {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
}

.hero picture img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero__title {
    font-size: 23px;
    color: white;
    position: absolute;
    top: 10%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    z-index: 3;
}

.hero-title--white {
    color: #ffffff;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 30px;
        top: 20%;
    }
}