@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;
    line-height: 1.4;
    background: #D8DBD8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 16px;
}

span {
    white-space: nowrap;
}

a.farbe {
    text-decoration: underline 1px;
    text-decoration-color: rgb(0, 0, 238)
}

h1,
h2,
a.farbe,
.farbe {
    color: #DF4F08;
}

h1 {
    font-size: 25px;
    margin: 30px 0;
}

h2 {
    font-size: 15px;
    margin: 0 0 16px;
}

ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

ul li {
    padding-left: 45px
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -15px;
    font-size: 1.375em;
    line-height: 1;
    color: #DF4F08;
}

ul li ul {
    margin: 0
}

ul li ul li:before {
    content: "";
    background-color: #fff;
    width: 3px;
    height: 3px;
    border: 1px solid #000;
    border-radius: 50%;
    position: relative;
    display: block;
    float: left;
    top: 8px;
    margin: 0 0 0 -15px;
}

hr {
    border: 0;
    border-top: 1px solid #000;
    width: 360px;
    margin: 16px 0 16px 45px;
}

header {
    padding: 24px 40px 7px;
    display: flex;
    justify-content: flex-end;
}

article {
    padding: 20px 40px;
}

.flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

footer {
    background: #96D6E1;
    padding: 20px 40px;
    text-align: justify;
}

footer p:last-of-type {
    margin: 0;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    footer {
        text-align: left;
    }
}

@media only screen and (max-width: 680px) {

    header,
    article,
    footer {
        padding: 16px;
    }

    h1 {
        text-align: center
    }

    .flex {
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    ul li {
        padding-left: 20px
    }

    .flex {
        flex-wrap: wrap;
        gap: 20px
    }
}

@media only screen and (max-width: 375px) {}
