* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: url(background.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #f7f7f7;
    overflow: hidden;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    6.67% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    26.67% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* Slider-Container */
#wrapper .slide {
    position: relative;
    width: 100%;
    overflow: hidden;
}


/* Alle Sliderbilder */
#wrapper .slide img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;

    position: absolute;
    top: 0;
    left: 0;

    animation: slidy 15s linear infinite;
}


/* Erstes Bild bestimmt die Höhe des Sliders */
#wrapper .slide img:nth-child(1) {
    position: relative;
    animation-delay: -1s;
}


/* Weitere Bilder liegen darüber */
#wrapper .slide img:nth-child(2) {
    animation-delay: 2s;
}

#wrapper .slide img:nth-child(3) {
    animation-delay: 5s;
}

#wrapper .slide img:nth-child(4) {
    animation-delay: 8s;
}

#wrapper .slide img:nth-child(5) {
    animation-delay: 11s;
}

#wrapper .slide img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 15s linear 0s infinite normal forwards;
}

#wrapper .slide img:nth-child(2) {
    animation-delay: 3s;
}

#wrapper .slide img:nth-child(3) {
    animation-delay: 6s;
}

#wrapper .slide img:nth-child(4) {
    animation-delay: 9s;
}

#wrapper .slide img:nth-child(5) {
    animation-delay: 12s;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .logo {
    padding: 24px;
}

#wrapper article {
    padding: 20px 28px;
}

#wrapper footer {
    padding: 0;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 23px;
    font-weight: 700;
    color: #5c6062;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #5c6062;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 20px 12px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 16px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 18px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article,#wrapper .logo {
        padding: 16px;
    }

    #wrapper footer {
        padding: 16px;
    }
}