@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Standard */
:root {
    font-size: 16px;
}

@font-face {
    font-family: 'Adelle Rg';
    src: url('Adelle-Bold.woff2') format('woff2'),
        url('Adelle-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 840px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}

p {
    padding-bottom: 1.5rem;
}

p small {
    font-size: 0.95em;
}

h1, h1+p, h3 {
    font-family: 'Adelle Rg', serif;
    text-align: center;
}

h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.8em;
    line-height: 1.1em;
}

h3 {
    margin: 0rem 0rem 0.6rem;
    font-size: 2.15em;
    line-height: 1.1em;
}

h1+p {
    font-size: 1.35em;
    line-height: 1.3;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0;
}

a {
    color: #CD1619;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    padding: 0rem 0rem 1.5rem 0rem;
    list-style-image: url();
    list-style: none;
}

li {
    padding-left: 2.1rem;
}

ul li:before {
    content: "»";
    display: inline-block;
    font-size: 1.500em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -1.3rem;
    color: #CD1619;
}

/* Hebt Float left/right auf */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

/* Ende Standard */
/* Header */
header {
    padding: 1.8rem 3rem 0rem;
    text-align: right;
}

hr {
    border: none;
    background-color: #CD1619;
    width: 80px;
    height: 4px;
    margin: 0 auto 2rem;
}

/* Ende Header */
/* Article */
article {
    padding: 2.5rem 3rem 1.4rem;
    background: url('bg.jpg') bottom right no-repeat;
}

article img {
    position: absolute;
    top: 628px;
    right: 72px;
}

article p:nth-last-of-type(1), article p:nth-last-of-type(2) {
    text-align: center;
}

article p:nth-last-of-type(2) {
    padding-bottom: 2rem;
}

/* Ende Article */
/* Footer */
footer {
    padding: 1rem 3rem 1.2rem;
    border-top: solid 4px #CD1619;
    text-align: center;
    font-size: 0.75em;
    line-height: 1.3;
    font-weight: 300;
}

footer a {
    color: #000;
}

footer span {
    color: #CD1619;
}

/* Ende Footer */
/* Responsive */
@media only screen and (max-width:839px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }

    article a, footer a {
        display: inline-block;
    }

    i br {
        display: none;
    }

    p {
        text-align: left;
    }

    header {
        padding: 1.8rem 1rem 0rem;
    }

    article {
        padding: 2rem 1rem 0.5rem;
        background-size: cover;
    }

    article img {
        position: static;
        margin-bottom: 1.6rem;
    }

    footer {
        padding: 1.3rem 1rem;
    }

    h1 {
        font-size: 1.4em;
    }

    h3 {
        font-size: 1.6em;
    }

    h1+p {
        font-size: 1.1em;
    }

    li {
        padding-left: 1.3rem;
    }
}

/* Ende Responsive */