@charset "utf-8";

/* open-sans-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v44-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/open-sans-v44-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/open-sans-v44-latin-regular.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/open-sans-v44-latin-regular.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/open-sans-v44-latin-regular.svg#OpenSans') format('svg');
    /* Legacy iOS */
}

/* open-sans-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v44-latin-700.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/open-sans-v44-latin-700.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/open-sans-v44-latin-700.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/open-sans-v44-latin-700.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/open-sans-v44-latin-700.svg#OpenSans') format('svg');
    /* Legacy iOS */
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    overflow: hidden;
    background: #FFC000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #0563C1;
    text-decoration: underline 2px;
    white-space: nowrap;
}

p {
    margin: 0 0 20px;
}

.center {
    text-align: center;
    margin: 0
}

h1 {
    font-size: 25px;
    margin: 0 0 20px;
    line-height: 1.4;
}

h1 + p {
    margin: 0 0 30px;
}

h2 {
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 3px;
}

h3 {
    font-size: 16px;
    margin: 0 0 20px;
}

ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

ul li {
    padding-left: 55px
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: .312rem;
    height: .062rem;
    background: #000;
    margin-left: -25px;
    top: 11px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.logo {
    background: #fff;
    padding: 1% 0;
}

.bilder {
    display: flex;
    gap: 10px;
}

article {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 20px;
}

.links_bilder {
    width: 30%;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 13px;
    padding: 16px 0 0;
}

.weiss {
    background: #fff;
    padding: 20px 10px;
    width: 70%;
}

footer {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

footer img {
    margin: 0 auto 10px;
}

.info {
    width: 70%;
    text-align: center
}

.info p {
    margin: 0;
}

@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    
    header {
        flex-direction: column;
        justify-content: center;
    }
    
    .bilder {
        display: none;
    }
   
}

@media only screen and (max-width: 768px) {
    article {
        flex-direction: column;
    }

    .links_bilder,
    .weiss,
    .info {
        width: 100%;
    }
    
    .links_bilder {
       flex-direction: row;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .links_bilder img {
        width: auto;
    }

    h1 {
        text-align: center;
    }

    ul li {
        padding-left: 25px
    }
}

@media only screen and (max-width: 480px) {
    header {
        flex-direction: column;
    }
}
