@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');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    font-size: 16px;
}

body {
    color: #15191c;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}

#wrapper {
    max-width: 550px;
    margin: 16px auto;
    border: 3px solid #15191c;
    background-color: #fff;
    position: relative;
}

article {
    padding: 16px 16px 22px;
    background: linear-gradient(to bottom, #d9edf7 0%, #daf0fc 25%, #edf7fa 50%, #fff 75%, #fff 100%);
}

.qrcode {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 42px;
    align-items: center;
    margin: -18px 10px 0 0;
}

.box {
    flex: 1 1 0;
}

footer {
    padding: 18px 96px 16px;
    background: #7ec040;
}

figure {
    position: absolute;
    left: 18px;
    bottom: 10px;
}

footer p a {
    color: #fff !important;
    letter-spacing: 2px;
}

p:not(.margin) {
    margin: 0 0 6px;
}

p {
    text-align: justify;
    hyphens: auto;
}

:is(strong, h1) {
    font-weight: 700;
}

h1 {
    margin: 12px 0;
    font-size: 32px;
    line-height: 37px;
    color: #0073b5;
    text-align: center;
}

h1 span {
    font-size: 26px;
    line-height: 1;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #343332;
    text-decoration: none;
}

@media all and (max-width: 548px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    header img {
        width: 100%;
    }

    .qrcode {
        gap: 16px;
        margin: 0;
    }

    :is(p, h1) {
        hyphens: auto;
        text-wrap: pretty;
    }

    p {
        text-align: left;
    }

    :is(a, span) {
        white-space: nowrap;
    }

    br {
        display: none;
    }
}

@media all and (max-width: 480px) {
    .qrcode {
        flex-direction: column;
        align-items: center;
    }

    .box {
        width: 100%;
    }

    footer {
        padding: 16px;
    }

    figure {
        position: static;
        display: flex;
        justify-content: center;
        margin: 0 0 16px;
    }

    footer p {
        text-align: center;
    }
}