@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: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/roboto-v30-latin-900.eot');
    src: url('../fonts/roboto-v30-latin-900.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-900.woff2') format('woff2'), url('../fonts/roboto-v30-latin-900.woff') format('woff'), url('../fonts/roboto-v30-latin-900.ttf') format('truetype'), url('../fonts/roboto-v30-latin-900.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #231f20;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 21px;
    font-weight: 900;
}

#wrapper {
    max-width: 540px;
    margin: 16px auto;
    border: 3px solid #6d6e71;
    background: #f4f5f5;
}

article {
    padding: 0 20px 100px 30px;
    position: relative;
    margin: -8% 0 0;
}

article p {
    font-weight: 400;
    position: absolute;
    bottom: 0;
    right: 20px;
    z-index: 9;
    font-size: 15px;
    line-height: 20px;
    border-left: 3px solid #ec1c28;
    padding: 0 0 76px 16px;
}

footer {
    position: relative;
    background: #ec1c28;
}

.flex {
    padding: 0 30px 10px;
    margin: -2% 0 0;
}

.qrcode {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.font {
    font-size: 26px;
    line-height: 1.2;
    color: #fff;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 6px;
    font-weight: 900;
    font-size: 47px;
    line-height: 1.2;
    color: #ec1c28;
}

h2 {
    margin: 0 0 1px;
    font-weight: 900;
    font-size: 26px;
    line-height: 1.2;
}

h3 {
    margin: 0 0 6px;
    font-weight: 900;
    font-size: 30px;
    line-height: 1.2;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    list-style: none;
    font-size: 22px;
    line-height: 1.3;
}

ul li {
    padding-left: 14px;
}

li:before {
    content: '\2022';
    color: #ec1c28;
    float: left;
    font-size: 25px;
    text-indent: -14px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 538px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    article {
        padding: 0 16px 12px;
        margin: 0;
    }

    article p {
        position: static;
        border-left: 0;
        padding: 16px 0 0;
    }

    figure img {
        width: 100%;
    }

    .flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 0;
        padding: 10px 16px;
    }

    .qrcode {
        position: static;
    }

    .font {
        text-align: center;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        font-size: 38px;
        margin: 8px 0;
    }

    br {
        display: none;
    }
}