@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v32-latin-regular.eot');
    src: url('../fonts/roboto-v32-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v32-latin-regular.woff') format('woff'), url('../fonts/roboto-v32-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v32-latin-regular.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    background: url(../images/hintergrund.jpg) no-repeat;
    background-size: 100%;
    padding: 1.25rem 3.125rem;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

article p {
    margin: 0 0 1.25rem;
}

h1 {
    color: #fff;
    font-size: 2.813rem;
    line-height: .8;
    margin: 0.625rem 0 1.25rem;
}

h1 span {
    font-size: 1.5rem;
}

h2 {
    color: #fff;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

header {
    position: absolute;
    right: 1.875rem;
}

article {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
    column-gap: 1.25rem;
}

section {
    margin: 225px 0 0;
    min-width: 58%;
}

section img {
    margin-left: 44px;
}

a.button {
    background: #BC4487;
    color: #fff;
    padding: 0.625rem;
}

footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0 17rem 42%;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        background: #B2B6C1;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1,
    h2,
    h3,
    h4 {
        text-align: center;
    }

    header {
        position: static;
        justify-content: center;
        display: flex;
    }

    article {
        display: block;
        padding: 0;
    }

    article p {
        margin: 0 0 1rem;
    }

    section {
        margin: 0 0 1rem;
    }

    section br {
        display: none;
    }

    .text {
        margin: 0 auto 0.625rem;
        max-width: 15rem;
    }

    footer {
        padding: 1rem 0 0;
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (max-width: 40rem) {
    .text {
        max-width: 10rem;
        margin: 0.625rem auto 0;
    }

    h1 {
        font-size: 2.3rem;
    }
}