@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}

p {
    text-align: justify;
    margin: 0 0 16px;
    hyphens: auto
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.blau {
    color: #0000FF;
    text-decoration: underline;
}

.margin {
    margin: 0;
}

.nowrap,
h1 span {
    white-space: nowrap;
}

h1 {
    font-size: 25px;
    text-align: center;
    margin: 20px 0;
    line-height: 1.2;
}

h1 small {
    font-size: 18px;
}

h2 {
    font-size: .937rem;
    line-height: 1.4;
}

ul {
    list-style: none;
    padding-bottom: 16px;
}

ul li {
    padding: 0 0 0 32px;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

header {
    padding: 3.75rem 60px 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center
}

article {
    padding: 0 60px;
}

footer p {
    margin: 32px 0;
}

footer {
    padding: 0 60px;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        text-align: left;
    }
}

@media only screen and (max-width: 700px) {
    #wrapper {
        padding: 1rem
    }

    ul li {
        padding: 0 0 0 0.9375rem;
    }

    ul li:before {
        margin: 0 0 0 -0.9375rem;
    }

    header,
    footer {
        padding: 0;
    }

    article {
        padding: 1rem 0 0;
    }

    footer p {
        margin: 1rem 0 0;
    }
}