.slideshow {
    width: 100%;
    height: 650px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 600px) {
    .slideshow {
        height: 150px;
        margin-top: 0;
    }
}

.slide {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 2s;
}

.slide-bild {
    width: 100%;
}

.pfeil {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5%;
    color: rgba(255, 255, 255, 0.7);
    user-select: none;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .pfeil {
        display: none;
    }
}

.pfeil:hover {
    color: white;
}

.pfeil-links {
    left: 0;
}

.pfeil-rechts {
    right: 0;
}

.indikatorenliste {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    list-style-type: none;
    font-size: 80px;
    display: none;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.indikator {
    padding: 0 10px;
    user-select: none;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity 2s;
}

.aktiv {
    opacity: 1;
}