@font-face {
    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-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');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375rem;
    color: #231f20;
}

#wrapper {
    margin: 1rem auto;
    max-width: 830px;
    background: #fff;
    border: 2px solid #231f20;
}

article {
    padding: 12px 1.25rem;
}

.flex {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.qrcode {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    margin: 0 0 11px;
}

footer {
    background: #c2483f;
    padding: 10px 20px;
}

footer :is(p, a) {
    color: #fff !important;
    margin: 0 !important;
}
footer p{font-size: 101%;}
p:not(.qrcode p) {
    margin-bottom: 10px;
    text-align: justify;
    hyphens: auto;
}

:is(h1, strong) {
    font-weight: 700;
}

h1 {
    font-size: 1.5625rem;
    color: #c04337;
    line-height: 1.25;
    margin: 0 0 6px;
    text-align: center;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #231f20;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media screen and (max-width: 834px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    header img {
        width: 100%;
    }

    :is(h1, p) {
        text-align: left !important;
        hyphens: auto;
        text-wrap: pretty;
    }

    span {
        white-space: nowrap;
    }

    br {
        display: none;
    }
}

@media screen and (max-width: 688px) {
    :is(article, footer) {
        padding: 16px;
    }

    .flex {
        flex-direction: column;
        align-items: center;
        margin-top: 16px;
        justify-content: center;
    }

    .qrcode {
        align-items: center;
        justify-content: center;
        margin: 0;
    }
}

@media screen and (max-width: 420px) {
    .qrcode {
        flex-direction: column;
        gap: 16px;
    }

    .qrcode p {
        text-align: center !important;
    }
}

@media screen and (max-width: 374px) {
    .link {
        white-space: normal !important;
    }
}