@charset "utf-8";

:root {
    font-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 68.75rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 1.25rem gray;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1rem;
}

ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

ul li {
    padding-left: 2.375rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.125rem;
    font-size: 1.25rem;
    ;
    line-height: 1.1;
}

h1 {
    font-size: 1.5rem;
    margin: 2rem 0;
}

h2 {
    font-size: 1rem;
    margin: 0 0 1rem;
}

article {
    padding: 2rem;
}

.flex {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
}

.links,
.rechts {
    width: 50%
}

.col {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    margin: 0 0 1.25rem;
}

.col p {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 50%;
    margin: 0;
    font-size: 0.9375rem;
    hyphens: auto;
}

.col p img {
    width: 3.125rem
}

footer {
    padding: 0 2rem 2rem;
    display: flex;
    gap: 6.25rem;
}

.logo p {
    margin: 0.625rem 0 0;
}

a.btn {
    font-size: 1.3em;
    position: relative;
    background: #cd2220;
    color: #fff;
    height: 1;
    display: inline-block;
    padding: 0.6875rem;
    text-decoration: none;
    margin-bottom: 2.0em;
    margin-top: 2.0em;
}

a.btn:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-left-color: #cd2220;
    border-width: 1.25em;
    margin-top: -1.25em;
}

@media only screen and (max-width: 68.6875rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    article,
    footer {
        padding: 1rem;
    }
}

@media only screen and (max-width: 55rem) {
    :is(a:link, a:visited, a:hover, a:active) {
        white-space: normal;
    }

    h1 {
        text-align: center
    }

    .flex,
    footer {
        flex-direction: column;
    }

    .links,
    .rechts {
        width: 100%
    }

    footer {
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    a.btn {
        margin: 0;
    }
}

@media only screen and (max-width: 30rem) {
    h1 {
        font-size: 1.4375rem;
    }

    ul li {
        padding-left: 1.25rem
    }

    .col {
        flex-direction: column
    }

    .col p {
        width: 100%;
    }
}