@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');
}

@font-face {
    font-display: swap;
    font-family: 'Caveat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/caveat-v17-latin-700.eot');
    src: url('../fonts/caveat-v17-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/caveat-v17-latin-700.woff2') format('woff2'), url('../fonts/caveat-v17-latin-700.woff') format('woff'), url('../fonts/caveat-v17-latin-700.ttf') format('truetype'), url('../fonts/caveat-v17-latin-700.svg#Caveat') 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: 700px;
    margin: 16px auto;
    border: 1px solid #000;
    background: url('../images/background.png') no-repeat;
}

article {
    padding: 24px 16px 0;
}

figure {
    margin: 0 -16px;
}

footer {
    padding: 0 50px;
    margin: -50px 0 0;
}

footer p {
    color: #000511;
    font-size: 12px;
    line-height: 15px;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.qrcode {
    display: flex;
    align-items: center;
    gap: 26px;
}

.margin {
    margin: 3px 0;
}

.images {
    margin: 10px -50px 0;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 32px;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.1;
    text-align: center;
}

h1 small {
    display: block;
    color: #f18800;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.2;
}

h2 {
    margin: 0 0 0 -30px;
    font-weight: 700;
    font-size: 28px;
    line-height: 29px;
    color: #f18800;
    font-family: 'Caveat', Arial, sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

h2 img {
    padding: 26px 0 0;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000511;
    text-decoration: none;
    white-space: nowrap;
}

a.color {
    color: #0c4d6a !important;
}

ul {
    margin: 0 0 42px;
    list-style: none;
    font-weight: 700;
    text-align: center;
}

ul li {
    padding-left: 20px;
    position: relative;
    margin: 0 0 10px;
}

li:before {
    content: '\2714';
    position: absolute;
    color: #f18800;
    font-size: 18px;
    text-indent: -25px;
    transform: rotate(5deg);
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 699px) {
    #wrapper {
        margin: 0 auto;
        background: url('../images/background.jpg') no-repeat top center;
        background-size: cover;
        border: none;
    }

    footer {
        background: #fff;
        padding: 16px 16px 0 46px;
        margin: 0;
    }

    .images {
        margin: 0 -16px 0 -50px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    ul {
        margin: 0 0 30px;
    }

    p span {
        white-space: nowrap;
    }
}

@media all and (max-width: 605px) {
    .flex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 10px 0 0;
    }

    h1 {
        font-size: 45px;
    }

    h2 {
        text-align: center;
        justify-content: center;
        font-size: 26px;
    }
}

@media all and (max-width: 420px) {
    .qrcode {
        gap: 16px;
        margin: 0 0 0 -28px;
    }

    h2 br {
        display: none;
    }
}