/* Text & Bild */

.content-container {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 1250px;
    margin: auto;
}

.content-container img {
    width: 100%;
    max-width: 400px;
    margin: 15px 0;
    align-self: center;
    vertical-align: middle;
    border-radius: 10px;
    box-shadow: 5px 5px 30px 5px rgba(0,0,0,0.25);
}


/* Banner */

.banner-container {
    position: relative;
    margin-top: 25px;
}

.banner-container img {
    width: 100%;
    height: 750px;
    filter: brightness(0.75);
    object-fit: cover;
    vertical-align: middle;
}

.banner-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 75px;
    background-color: rgba(0, 0, 20, 0.5);
    font-size: 25px;
}
