/* Startseitenbild */
header {
    width: 100%;
    height: 100%;
    background: url('header.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

/* Hintergrund Container */
.parallax-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    display: flex;
    align-items: flex-end;
}

.parallax-container img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    transform-origin: center center;
    /* Standardmäßig vom Zentrum */
    transform: scale(1);
    transition: transform 0.1s linear;
}

/* Inhalt */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding-top: 100px;
}

.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

@media screen and (max-width: 1400px) {
    .parallax-container > img {
        height: 100vh;
    }
}