@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');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    color: #231f20;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 400;
}

#wrapper {
    max-width: 685px;
    margin: 1rem auto;
    border: 3px solid #1968b3;
    background: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

article {
    padding: 0.625rem 1.875rem 0.785rem;
    position: relative;
}

.padding {
    text-align: justify;
}

.qrcode {
    position: absolute;
    z-index: 3;
    right: 1.875rem;
    bottom: 4px;
}

footer {
    padding: 0 1.875rem 0.875rem;
    margin-top: 0.3125rem;
}

p {
    margin: 0 0 0.5rem;
    text-align: justify;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    line-height: 1.1;
    color: #1968b3;
}

h1 small {
    font-weight: 400;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    letter-spacing: 0.1875rem;
    text-align: right;
}

h2 a {
    color: #1963b0 !important;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #231f20;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.block {
    display: inline-block;
    padding-right: 94px;
}

hr {
    border: none;
    width: 100%;
    height: 0.25rem;
    background: #126bb5;
    display: block;
    margin-bottom: 0.625rem;
}

@media all and (max-width: 685px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    article {
        padding: 1rem 1rem 0.75rem;
    }

    .block {
        white-space: normal;
        display: inline;
        padding-right: 0;
    }

    .padding {
        text-align: left;
    }

    footer {
        padding: 0 1rem 0.625rem;
    }

    p {
        text-align: left;
    }

    br {
        display: none;
    }

    p span {
        white-space: nowrap;
    }

    .qrcode {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 16px;
    }
}