﻿@charset "utf-8";

/* Standard */
:root {
    font: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #3b3b3b;
    font-family: Helvetica, Arial, sans-serif;
    font-size: .875rem;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: solid thin #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0rem;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 1rem;
    font-size: 1.692em;
    line-height: 1.1em;
    color: #7c9d1a;
    text-align: center;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.2em;
    margin-bottom: 0;

}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    padding: 0 0 1rem 1.25rem;
    list-style: none;

}

ol {
    padding: 0 0 0 1rem;
    list-style: none;

}

li {
    padding-left: 1.25rem;
}

ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.500em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -1.25rem;
}


ol li:before {
    content: "\25CB";
    display: inline-block;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -1.25rem;
    font-size: 0.875rem;
}


/* Hebt Float left/right auf */

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

/*LanguageExchange*/

.langs {
    list-style: none;
    position: absolute;
    width: 6.25rem;
    right: 3.75rem;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.langs li {
    display: inline;
    width: 6.25rem;
    cursor: pointer;
}

.langs li:before {
    display: none;
}

.language {
    padding: 0 .625rem;
    top: 0;
    left: 0;
    display: none;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.active {
    display: block;
    opacity: 1;
}

/*LanguageExchangeEnd*/



/* Header */

header {
    padding: 0rem;
    position: relative;
}

header a {
    max-width: 13.438rem;
    display: block;
    margin: 50px;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    10% {
        left: 0%;
    }

    20% {
        left: -100%;
    }

    30% {
        left: -100%;
    }

    40% {
        left: -200%;
    }

    50% {
        left: -200%;
    }

    60% {
        left: -300%;
    }

    70% {
        left: -300%;
    }

    80% {
        left: -400%;
    }

    90% {
        left: -400%;
    }

    100% {
        left: -500%;
    }


}

section {
    overflow: hidden;
}

section figure img {
    width: 14.2858%;
    float: left;
}

section figure {
    position: relative;
    width: 700%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    -webkit-animation-name: slidy;
    -webkit-animation-duration: 30s;
    -webkit-animation-delay: 10s;
    -webkit-animation-iteration-count: infinite;
    animation: 30s slidy infinite;
}

/* Ende Header */


/* Article */

article {
    padding: 1.25rem 3.125rem 0;
    position: relative;
}

article div > img {
    position: absolute;
    right: 5%;
    top: 20%;
}

article ul:first-of-type {
    width: 80%;
}

/* Ende Article */


/* Footer */

footer {
    padding: 0 3.125rem 0;
}

article p a {
    color: blue;
    text-decoration: underline;
}

footer p {
    font-weight: bold
}

header a {
    margin: 0.625rem;
}

/* Ende Footer */


/* Responsive */

@media only screen and (max-width:50rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: .625rem;
    }

    span {
        display: inline-block;
    }

    p {
        text-align: left;
    }

    p br {
        display: none;
    }


    .langs {
        list-style: none;
        position: static;
        bottom: 0;
        display: block;
        margin: .625rem auto;
    }

    article,
    footer {
        padding: .625rem 0;
    }

    article ul:first-of-type {
        width: auto;
    }

    article div > img {
        display: none;
    }

    ul {
        margin: 0 0 0.625rem;
        padding: 0;
    }

    ul br {
        display: none;
    }

    a:link,
    a:active,
    a:visited {
        font-size: 1rem;
        text-decoration: none;
    }

    a:hover {
        text-decoration: none;
    }

    footer br {
        display: block;
    }
}

/* Ende Responsive */
