@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-size: 1rem;
    line-height: 1.3125rem;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 910px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 60px 74px;
    overflow: hidden;
    background-color: #fff;
}

header {
    margin: 0 0 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}

header section {
    width: calc(100% - 220px);
}

header p {
    margin-bottom: 6px;
    color: #646464;
    font-size: 13px;
    line-height: 19px;
    text-align: left;
}

article {
    position: relative;
}

.flexbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}

.pfeil {
    margin-top: -26px;
}

.flexbox span {
    display: block;
}

figure {
    position: absolute;
    bottom: 3%;
    right: 0;
    z-index: 1;
}

.button {
    margin: 2rem 0;
    width: 200px;
}

.button a {
    background: #ff0000;
    padding: 10px 45px;
    border-radius: 2px;
    color: #FFFFFF !important;
    font-weight: bold;
    text-align: center;
}

:is(h1, h2, h3, strong) {
    font-weight: 700;
}

h1 {
    margin: 20px 0 0;
    font-size: 24px;
    line-height: 1.25;
}

h1+p {
    padding-bottom: 6px;
}

h2 {
    margin: 16px 0;
    font-size: 16px;
    line-height: 20px;
}

h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #646464;
    line-height: 20px;
}

p {
    margin: 0 0 16px;
    text-align: justify;
    hyphens: auto;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #0000FF;
    white-space: nowrap;
    text-decoration: underline;
}

ul {
    margin: 0 38px 24px 24px;
    list-style: none;
}

ul li {
    padding-left: 28px;
    margin-bottom: 10px;
}

ul li:before {
    content: "\2022";
    color: #FF0000;
    float: left;
    font-size: 25px;
    text-indent: -28px;
}

@media all and (max-width: 909px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    header {
        margin: 0 0 25px;
        gap: 35px;
    }

    header br {
        display: inline;
    }

    p {
        text-align: left !important;
    }

    br {
        display: none;
    }

    figure {
        right: -20px;
    }
}

@media all and (max-width:830px) {
    #wrapper {
        padding: 1rem;
    }

    ul {
        margin: 0 0 24px;
        list-style: none;
    }

    figure {
        right: 0;
    }
}

@media all and (max-width:720px) {
    header section {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    header {
        justify-content: center;
    }

    header br {
        display: none;
    }

    header p {
        text-align: center !important;
    }

    .button {
        margin: 2rem auto;
    }

    .button+p {
        text-align: center !important;
    }

    .flexbox {
        justify-content: center;
    }
}

@media all and (max-width: 666px) {
    figure {
        position: static;
        display: flex;
        justify-content: center;
        margin: 0 0 20px;
    }

    ul li {
        padding-left: 20px;
    }

    ul li:before {
        text-indent: -20px;
    }
}