@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), 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: local(''), 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 {
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 30px 32px 10px;
    background: url('../images/background.jpg') no-repeat top right;
    position: relative;
    height: 562px;
}

footer {
    position: absolute;
    bottom: 0;
    right: 42px;
    z-index: 9;
    opacity: 0;
}

.qrcode {
    position: absolute;
    bottom: 310px;
    right: 18px;
    z-index: 999;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

h1 span {
    font-size: 16px;
}

h2 {
    margin: 0 0 26px;
    font-weight: 400;
    font-size: 75px;
    line-height: 1.1;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    list-style: none;
    padding-right: 320px;
}

ul span {
    position: relative;
    z-index: 999;
}

ul li {
    padding-left: 20px;
}

li:before {
    content: url('../images/icon.png');
    float: left;
    margin-top: 1px;
    text-indent: -20px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 799px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h2 {
        font-size: 9vw;
    }
}

@media all and (max-width: 680px) {
    #wrapper {
        background: url('../images/background-mobile.jpg') no-repeat;
        height: auto;
        background-size: cover;
        padding: 16px 16px 0;
    }

    .qrcode {
        position: static;
        background: #ed1c24;
        padding: 16px;
        margin: 16px 0;
        border-radius: 30px;
    }

    :is(.logo, .qrcode) {
        display: flex;
        justify-content: center;
    }

    footer {
        opacity: 1;
        position: static;
    }

    ul {
        padding-right: 0;
    }
}