body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.slideshow {
    width: 70vw;
    height: 80vh;
    box-shadow: 0px 0px 20px gray;
    position: relative;
}

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

.slide-bild {
    width: 100%;
}

.slide-textbereich {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 93%;
    background-color: rgba(119, 10, 65, 0.5);
    color: white;
    text-align: center;
    font-family: sans-serif;
    padding: 0 15% 0 15%;
}

.slide-ueberschrift {
    font-size: 2.5em;
    margin: 3px 0;
}

.slide-beschreibung {
    font-size: 1.4em;
    margin: 0;
}

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

.pfeil:hover {
    color: rgb(119, 10, 65);
}

.pfeil-links {
    left: 0;
}

.pfeil-rechts {
    right: 0;
}

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

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

.aktiv {
    opacity: 1;
}
.home {
    margin-left: 50px;
    margin-top: 15px;
    opacity: 0.6;
    }
.home:hover {
    opacity: 1;
}
    
