:root {
    font-size: 16px;
}

@font-face {
    font-display: swap;
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/titillium-web-v17-latin-regular.eot');
    src: url('../fonts/titillium-web-v17-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/titillium-web-v17-latin-regular.woff2') format('woff2'), url('../fonts/titillium-web-v17-latin-regular.woff') format('woff'), url('../fonts/titillium-web-v17-latin-regular.ttf') format('truetype'), url('../fonts/titillium-web-v17-latin-regular.svg#TitilliumWeb') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/titillium-web-v17-latin-600.eot');
    src: url('../fonts/titillium-web-v17-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/titillium-web-v17-latin-600.woff2') format('woff2'), url('../fonts/titillium-web-v17-latin-600.woff') format('woff'), url('../fonts/titillium-web-v17-latin-600.ttf') format('truetype'), url('../fonts/titillium-web-v17-latin-600.svg#TitilliumWeb') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    line-height: 20px;
    font-family: 'Titillium Web', Arial, sans-serif;
    color: #2e2113;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 620px;
    margin: 1rem auto;
    border: 1px solid #2e2113;
    overflow: hidden;
    background-color: #000;
}

header {
    padding: 35px 50px 0;
}

header p {
    color: #fff;
}

article {
    background: url('../images/astronaut.jpg') no-repeat bottom center;
    position: relative;
    background-size: cover;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .75);
}

article .content {
    padding: 0 50px 30px;
}

article p {
    font-size: 17px;
    line-height: 22px;
    color: #FFF;
}

.button {
    display: flex;
    justify-content: center;
}

.button a {
    text-align: center;
    display: inline-block;
    padding: 10px 40px;
    color: #fff !important;
    background: #f48d18;
    border-radius: 10px;
    font-weight: 700;
}

footer {
    padding: 16px 44px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 0;
    background-color: #fff;
}

.qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

:is(p:not(.kontakt p:last-of-type), h1) {
    margin-bottom: 16px;
}

:is(strong, h1) {
    font-weight: 600;
}

h1 {
    font-size: 26px;
    line-height: 31px;
    color: #FFF;
}

h1+p {
    margin-bottom: 32px !important;
}

h2 {
    margin: 16px 0;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #2e2113;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin: 0 0 16px;
    list-style: none;
    color: #fff;
}

ul li {
    padding-left: 22px;
}

ul li:before {
    content: "\2022";
    color: #fff;
    float: left;
    margin-top: 1px;
    font-size: 20px;
    line-height: 1em;
    text-indent: -22px;
    font-family: Arial, Helvetica, sans-serif;
}

span {
    white-space: nowrap;
}

@media (max-width: 618px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    header {
        padding: 16px 16px 0;
    }

    article .content {
        padding: 16px 16px 2px;
    }

    article br:not(h2 br) {
        display: none;
    }

    footer {
        padding: 16px;
        gap: 16px;
        flex-wrap: wrap;
    }

    h1+p {
        margin-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    header {
        position: relative;
    }

    article .content {
        padding-top: 0;
    }

    footer {
        margin: 0;
        flex-direction: column;
        align-items: center;
    }

    footer p {
        text-align: center;
    }
}