@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v32-latin-700.eot');
    src: url('../fonts/roboto-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-700.woff2') format('woff2'), url('../fonts/roboto-v32-latin-700.woff') format('woff'), url('../fonts/roboto-v32-latin-700.ttf') format('truetype'), url('../fonts/roboto-v32-latin-700.svg#Roboto') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
}

#wrapper {
    max-width: 490px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 16px;
    background: #098bcb;
}

header {
    padding: 0 0 12px;
    display: flex;
    justify-content: center;
}

:is(p, h1) {
    text-align: center;
}

h1 {
    margin: 15px 0;
    font-size: 37px;
    line-height: 1.1;
}

h1 small {
    display: block;
    font-size: 20px;
}

footer p {
    font-size: 20px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width:490px) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
        border: none;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
    }
}