@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #575757;
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.4
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 850px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

header {
    padding: 2rem 1rem 20px;
}

.logo {
    margin: 0 0 60px auto;
}

article {
    padding: 40px 60px 1rem;
}

article p:last-of-type {
    text-align: center;
    margin: 50px 0 0;
}

p {
    margin: 0 0 1rem;
}

.justify {
    text-align: justify;
}

h1 {
    font-size: 30px;
    margin: 20px 0 30px;
    color: #242424;
    font-weight: normal;
}

h2 {
    font-size: 17px;
    color: #64C2C8;
    margin: 0 0 16px;
}

ul {
    margin: 0 0 30px 18px;
    list-style: none;
}

ul li:before {
    content: "\2022";
    font-size: 18px;
    float: left;
    margin: 0 0 0 -18px;
    color: #FBD70D;
    line-height: 1;
}

ul:first-of-type {
    margin: 0 0 16px 18px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.blau {
    color: #0000FF;
    white-space: normal;
}

span {
    display: inline-block;
}

footer span {
    white-space: nowrap;
}

footer {
    background: #F7F7F7;
    padding: 32px;
    margin: 0 50px 20px;
}

footer p {
    text-align: center
}

footer p:last-of-type {
    margin: 0
}

@media only screen and (max-width: 849px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 16px;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .justify {
        text-align: left;
    }

    article ul {
        hyphens: auto;
    }
}

@media only screen and (max-width: 768px) {
    h1 {
        text-align: center;
    }

    article {
        padding: 16px;
    }

    footer {
        margin: 0;
        padding: 16px;
    }
}
