@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');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #221c22;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
    text-align: center;
}

#wrapper {
    max-width: 512px;
    margin: 1rem auto;
    border: 1px solid #939598;
    background-color: #fff;
}

article {
    padding: 10px;
}

footer {
    padding: 0 10px 10px;
    position: relative;
}

footer p {
    text-align: left !important;
    margin-top: 5px !important;
}

footer p strong {
    font-size: 18px;
}

.qr-code {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

p:not(:first-of-type) {
    margin-top: 16px;
}

h1 {
    font-size: 25px;
    line-height: 35px;
    margin: 16px 0 0;
}

h1+p {
    margin-top: 3px !important;
}

h2 {
    font-size: 16px;
    line-height: 24px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #221c22;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:512px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    p {
        hyphens: auto;
        text-wrap: pretty
    }

    p span {
        white-space: nowrap;
    }

    footer p {
        text-align: center !important;
    }

    .qr-code {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 16px
    }
}