header {
    position: relative;
}

.header-image {
    background-image: url('/assets/background.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #6b765a;
}

.header-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    background-color: #000;
    opacity: 0.5;
}

.header-title {
    padding: 3em 0;
    margin: 0;
    color: #fff;
    z-index: 10;
    position: relative;
}

@media screen and (max-width: 992px) {
    .header-title {
        padding: 2.5em 0;
        font-size: 28px;
    }
}

@media screen and (max-width: 414px) {
    .header-title {
        padding: 1.8em 0;
        font-size: 22px;
    }
}