@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: 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-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: 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');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 1.25rem;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    border: 1px solid #CBCBCB;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

header {
    width: 50%;
    padding: 30px 40px 19px;
    border: 1px solid #f04e2a;
}

header p {
    text-align: justify;
}

header p strong {
    color: #f04e2a;
}

article {
    margin: 0;
    width: 50%;
}

footer {
    margin: 0;
    width: 50%;
    position: absolute;
    bottom: 11px;
    right: 21px;
    padding: 40px 40px 0;
}

.title {
    padding: 0 42px 0 54px;
}

.slogan {
    display: flex;
    justify-content: center;
    margin: 0 0 27px;
}

:is(strong, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}

h2 {
    font-size: 18px;
    margin: 1rem 0;
    line-height: 22px;
    font-style: italic;
}

h2 span {
    color: #f04e2a;
}

h3 {
    font-size: 16px;
    margin: 1rem 0 5px;
    line-height: 1.125rem;
    font-style: italic;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 1rem;
    list-style: none;
}

ul li {
    padding-left: 28px;
    background: url(../images/iconlist.jpg) no-repeat 0 0px;
    margin: 0 0 4px;
}

hr {
    background: #f04e2a;
    width: 28px;
    height: 2px;
    position: absolute;
    top: 9px;
    left: 107px;
    transform: rotate(-63deg);
    border: none;
}

.qrcode {
    position: absolute;
    bottom: 9px;
    right: 0;
}

.flex {
    display: flex;
    font-size: 12px;
    line-height: 15px;
    gap: 30px;
    position: relative;
    flex-wrap: wrap;
}

@media all and (max-width:899px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    header {
        padding: 1rem;
    }

    header p {
        text-align: left;
    }

    article {
        padding: 1rem;
    }

    footer {
        position: static;
        width: 100%;
        padding: 1rem;
    }

    .qrcode {
        right: 1rem;
    }

    br:not(footer br) {
        display: none;
    }
}

@media all and (max-width:767px) {
    :is(header, article) {
        width: 100%;
    }

    .headerbild {
        display: flex;
        justify-content: center;
    }
}

@media all and (max-width:480px) {
    .qrcode {
        position: static;
    }

    .title {
        padding: 0;
    }
}