@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #FFF;
    line-height: 1.25rem;
    font-size: 13px;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background: #fff url(../images/background.jpg) no-repeat;
}

header {
    margin: 0;
}

article {
    padding: 0 87px 0 78px;
    margin: -59px 0 0 0;
}

footer {
    padding: 0 70px;
    margin: 5px 0 51px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 1.25rem 0;
    font-size: 16px;
    line-height: 19px;
    padding: 0 0 0 20px;
}

h1:before {
    content: "\2012";
    float: left;
    color: #80b33c;
    font-family: Arial, sans-serif;
    font-size: 1.5625rem;
    text-indent: -1.25rem;
    margin: -3px 0 0;
}

h2 {
    font-size: 23px;
    margin: 1rem 0;
    line-height: 24px;
}

h2 span {
    display: block;
    font-size: 13px;
}

h3 {
    font-size: 19px;
    margin: 1rem 0 3px;
    line-height: 1;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #80b33c;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

ul {
    margin: 0;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
}

ul li:before {
    content: "\2012";
    float: left;
    color: #80b33c;
    font-family: Arial, sans-serif;
    font-size: 1.5625rem;
    text-indent: -1.25rem;
    margin: -2px 0 0;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex div {
    width: 48%;
}

.font {
    font-size: 21px;
    line-height: 25px;
    margin: 0 0 25px;
}

.text {
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    padding: 9px 0;
}

.width {
    width: 50%;
}

.qrcode {
    position: relative;
    padding: 0 0 0 100px;
}

.qr {
    position: absolute;
    top: 17px;
    left: 0;
}

@media all and (max-width:799px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        background: #FFF;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    article {
        background: #231F20;
        margin: 0 4.75%;
        padding: 10px 1rem;
    }

    footer {
        background: #231F20;
        padding: 10px 1rem;
        margin: 0 4.75% 1rem;
        flex-wrap: wrap;
    }

    p {
        margin: 0 0 0.625rem;
        text-align: left;
    }

    br:not(footer br) {
        display: none;
    }
}

@media all and (max-width:600px) {
    .flex div {
        width: 100%;
    }
}