body {
    background-color: antiquewhite;
    height: 100vh;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}



.eroeffnungsfotos {
    height: 350px;
}

.header_eingebunden {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media(max-width: 450px) {
    .eroeffnungsfotos {
        width: 300px;
        height: 300px;
        margin-bottom: 10px;
    }
}

@media(max-width: 350px) {
    .eroeffnungsfotos {
        width: 250px;
        height: 250px;
        margin-bottom: 10px;
    }
}


.land_region_images_container1 {
    display: flex;
    flex-wrap: wrap; /* Erlauben Sie das Umwickeln der Elemente auf eine neue Zeile */
    justify-content: center; /* Zentrieren Sie die Elemente horizontal */
}

.land_region_images {
    max-width: calc(50% - 20px); /* Setzen Sie die maximale Breite für die Bilder auf 50% minus den Rand */
    max-height: 300px; /* Maximale Bildhöhe auf 300px begrenzen */
    width: 300px;
    margin: 15px;
}

/* Media Query für kleinere Bildschirme */
@media (max-width: 600px) {
    .land_region_images {
        max-width: calc(100% - 20px); /* Bei kleineren Bildschirmen die maximale Breite auf 100% setzen */
    }
}

/* Stile für den Slider */
.slider-container {
    width: calc(100% - 300px);
    margin-left: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative; /* Added */
    margin-bottom: 80px;
}

.slider {
    display: flex;
    flex-direction: column; /* Arrange children vertically */
    align-items: center;
    justify-content: center;
    position: relative; /* Added */

}

.slide {
    display: none;
    transition: 1s ease-out; /* Transition animation */
    width: 350px;
    height: 450px;
    object-fit: cover;
}

.slide_img {
    width: 350px;
    height: 450px;
    object-fit: cover;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 21;
}

.next {
    right: 33%;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 33%;
    border-radius: 0 3px 3px 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

@media (max-width: 930px) {
    .slider-container {
        width: 100%;
        margin-left: 0;
        margin-bottom: 80px;
    }


    .slider_text {
        font-size: 16px;
    }

    .slider_text2 {
        font-size: 16px;
    }

    .slide {
        width: 300px;
        height: 400px;
    }

    .slide_img {
        width: 300px;
        height: 400px;
    }

    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .prev {
        left: 0;
        border-radius: 0 3px 3px 0;
    }


}

.slider_text {
    margin-top: 120px;
    font-size: 20px;
}

.slider_text2 {
    margin-top: 80px;
    font-size: 20px;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 60px;
}


.names {
    fle-direction: row;
    justify-content: space-around;
    width: 100%;
    margin-top: 10px;
    text-align: center;
    font-size: 11px;
    color: #333;
}
.names p {
    margin: 0;
    flex: 1;
}