.banner {
    position: relative;
    background-image: url("/resources/images/banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
    background-position-y: 45%;
    color: var(--banner-color);
}

.banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
}

.banner .caption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner .caption span {
    display: block;
}

.banner .caption span:first-of-type {
    font-size: 4rem;
}

.banner .caption span:last-of-type {
    font-style: italic;
}

@media(max-width: 768px) {
    .banner {
        height: 400px;
    }
}