@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v23-latin-regular.eot');
    src: url('../fonts/lato-v23-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v23-latin-regular.woff2') format('woff2'), url('../fonts/lato-v23-latin-regular.woff') format('woff'), url('../fonts/lato-v23-latin-regular.ttf') format('truetype'), url('../fonts/lato-v23-latin-regular.svg#Lato') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v23-latin-700.eot');
    src: url('../fonts/lato-v23-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v23-latin-700.woff2') format('woff2'), url('../fonts/lato-v23-latin-700.woff') format('woff'), url('../fonts/lato-v23-latin-700.ttf') format('truetype'), url('../fonts/lato-v23-latin-700.svg#Lato') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
}

#wrapper {
    max-width: 682px;
    margin: 1rem auto;
    border: 1px solid #000;
    background-color: #e8e6e6;
}

article {
    padding: 0 16px 10px;
}

footer {
    padding: 10px 16px;
    background: #fff;
    border-bottom: 17px solid #e8242b;
    display: flex;
    gap: 38px;
    position: relative;
}

footer p {
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
    margin-top: 0 !important;
}

footer p:first-of-type {
    color: #e8242b
}

.qr-code {
    position: absolute;
    top: 9px;
    right: 9px;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 20px;
    line-height: 24px;
    margin: 15px 0 0;
}

h2 {
    font-size: 30px;
    line-height: 1.1;
    color: #d1222a;
    margin-top: -54px;
    padding-bottom: 10px;
}

ul {
    list-style: none
}

ul li {
    padding-left: 19px;
}

li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 23px;
    text-indent: -19px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #e8242b;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:682px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    h2 {
        font-size: 4vw;
        margin-top: -43px;
    }
}

@media only screen and (max-width:560px) {
    article {
        padding: 16px
    }

    h2 {
        margin-top: 0px;
        font-size: 22px;
        line-height: 1.2;
    }

    h2 br {
        display: none
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 16px
    }

    footer p {
        text-align: center;
    }

    .qr-code {
        position: static;
    }
}