* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: black;
    font-family: Helvetiva, sans-serif;
    cursor: auto;
}

::selection {
    background: #fff;
    color: #000;
}

a {
    color: #000;
}

a:hover {
    font-style: italic;
}

.slideshow {
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.slideshow img {
    position: absolute;
    width: auto;
    height: auto;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slideshow img.framed {
    max-width: 100%;
    max-height: 100%;
}

.slideshow img.cropped {
    width: 100%;
}

.slideshow img.cropped-by-height {
    height: 100%;
}

.slideshow img.passepartout {
    max-width: 85%;
    max-height: 90%;
}

.slideshow img.active {
    opacity: 1;
}

/* .arrows {
    display: flex;
    position: fixed;
    z-index: 100;
    color: #fff;
    justify-content: unset;
    font-size: 2em;
    width: 90%;
    p.left {
        position: relative;
        width: 50%;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    p.right {
        position: relative;
        text-align: right;
        width: 50%;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    p.left:hover {
        opacity: 1;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    p.right:hover {
        opacity: 1;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
} */

.text {
    background: yellow;
    position: relative;
    padding: 1em 2em 3em 2em;
    line-height: 1.2em;
}

.text aside {
    width: 49%;
    display: inline-block;
    vertical-align: top;
}

li {
    list-style-position: outside;
    margin-left: 1.25em;
    list-style-type: circle;
    
}

.indent {
    margin-left: 1.32em;
}

/* Akkordeon-Styling */
    .accordion-wrapper {
        margin: 1.75em 0;
    }

        .accordion {
            width: 60%;
            border-top: 1px solid #000;
            overflow: hidden;
            margin-bottom: .5em;
        }

        .small-margin-bottom {
            margin-bottom: 0.5em;
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: .5em 0;
            cursor: pointer;
            /* -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out; */
        }

        /* .accordion-header:hover {
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        } */

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            /* padding: 0 .5em; */
            /* background: #fff; */
            /* transition: max-height 0.5s ease-out, padding 0.5s ease-out; */
        }

        .accordion.active .accordion-content {
            max-height: 100%;
            /* padding: .5em; */
            margin-bottom: 1em;
        }

        /* Pfeil-Styling */
        .arrow {
            transition: transform 0.5s ease-out;
        }

        .accordion.active .arrow {
            transform: rotate(90deg);
        }

@media screen and (min-width: 900px) {
    .hide-l {
        display: none;
    }
}

@media screen and (max-width: 889px) {
    body, html {
        background: #ffff00;
    }
    .text aside {
            width: 100%;
            display: block;
        }
    .accordion {
        width: 100% !important;
    }
    .slideshow {
        height: 75vh;
    }
    .hide-s {
        display: none;
    }

    .slideshow .small-focus-r {
        width: 180% !important;
        margin-right: 80%;
    }

    .slideshow .small-focus-l {
        width: 180% !important;
        margin-left: 80%;
    } 
}