@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    background: url(../images/hintergrund.jpg) no-repeat bottom center;
    background-size: 100%
}

h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 1.25rem 0 .25rem;
    color: #8B172B;
    text-align: center;
}

h2 {
    font-size: 1.15rem;
    color: #8B172B;
    margin: 0 0 .5rem
}

: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
}

.gray {
    color: #7F8080
}

.color {
    color: #8B172B
}

ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

ul li {
    padding-left: 20px
}

ul li:before {
    content: "\25a0";
    float: left;
    margin-left: -20px;
    font-size: 12px;
    line-height: 1.5;
    color: #E19D26
}

header {
    padding: 2rem 2rem 0
}

article {
    padding: 0 2rem
}

footer {
    padding: 0 2rem 5rem
}

.logo {
    position: absolute;
    bottom: 4.5rem;
    right: 2rem;
}

.margin {
    margin: 0 0 2rem
}

@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;
    }

    header,
    article {
        padding: 0
    }

    footer {
        padding: 0 0 5rem
    }

    .margin {
        margin: 0 0 1rem
    }
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .logo {
        position: static;
        display: flex;
        justify-content: center;
    }

    footer {
        padding: 0 0 1rem
    }
}