body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
@media(min-width: 981px){

    .slideshow{
        background-color: rgb(255, 255, 255);
        width: 1500px;
        height: 200px;
        /*box-shadow: 0px 0px 10px grey;*/
        position: relative;
    }
    .slide{
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgb(255, 255, 255);
        overflow: hidden;
        opacity: 0;
        transition: opacity 2s;

    }
    .slide-image {
        width: 100%;


    }
    .slide-textarea {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        top: 50%;
        background-color: transparent;
        color: black;
        text-align: center;
        font-family: 'Shadows Into Light', cursive;
        padding: 0 15% 0 15%;
    }
    .slide-ueberschrift {
        font-size: 2em;
        margin: 15% 0 0 0;
        user-select: none;
    }
    .slide-beschreibung{
        font-size: 1.6em;
        margin: 0;
        user-select: none;
    }

    .arrow {
        position: absolute;
        top: 0;
        bottom: 0;
        font-size: 0px;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 10%;
        color: rgba(97, 96, 96, 0.5);
        user-select: none;
        cursor: pointer;
    }
    .arrow:hover {
        color: rgb(49, 4, 253);
    }
    .arrow-left {
        visibility: hidden;
        left: 0px;
    }
    .arrow-right {
        visibility: hidden;
        right: 0px;
    }
    .indikatorenliste {
        visibility: hidden;
        position: relative;
        bottom: 15px;
        left: 0;
        right: 0;
        list-style-type: none;
        font-size: 40px;
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    .indikator {
        visibility: hidden;
        padding: 0 10px;
        user-select: none;
        cursor: pointer;
        color: rgb(73, 73, 73);
        opacity: 0.5; /* Deckkraft eines Elementes */
        transition: opacity 2s;
    }
    .aktiv{
        visibility: hidden;
        opacity: 1;
    }
}

@media(max-width: 980px){
    
    .slideshow{
        background-color: rgb(255, 255, 255);
        width: 600px;
        height: 112px;
       /* box-shadow: 0px 0px 10px grey;  */
        position: relative;
    }
    .slide{
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgb(255, 255, 255);
        overflow: hidden;
        opacity: 0;
        transition: opacity 2s;

    }
    .slide-image {
        width: 100%;


    }
    .slide-textarea {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        top: 50%;
        background-color: transparent;
        color: black;
        text-align: center;
        font-family: 'Shadows Into Light', cursive;
        padding: 0 15% 0 15%;
    }
    .slide-ueberschrift {
        font-size: 2em;
        margin: 15% 0 0 0;
        user-select: none;
    }
    .slide-beschreibung{
        font-size: 1.6em;
        margin: 0;
        user-select: none;
    }

    .arrow {
        position: absolute;
        top: 0px;
        bottom: 0;
        font-size: 0px;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 10%;
        color: rgba(97, 96, 96, 0.5);
        user-select: none;
        cursor: pointer;
    }
    .arrow:hover {
        color: rgb(49, 4, 253);
    }
    .arrow-left {
        visibility: hidden;
        left: 0px;
    }
    .arrow-right {
        visibility: hidden;
        right: 0px;
    }
    .indikatorenliste {
        visibility: hidden;
        position: absolute;
        top: 180px;
        left: 0;
        right: 0;
        list-style-type: none;
        font-size: 40px;
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    .indikator {
        visibility: hidden;
        padding: 0 10px;
        user-select: none;
        cursor: pointer;
        color: rgb(73, 73, 73);
        opacity: 0.5; /* Deckkraft eines Elementes */
        transition: opacity 2s;
    }
    .aktiv{
        opacity: 1;
    }
}