@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;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 1.375rem;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    padding: 35px;
    background-color: #fff;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 1.5rem 0;
    font-size: 22px;
    line-height: 24px;
    text-align: center;
    color: #00B9F6;
}

h2 {
    font-size: 16px;
    margin: 1.25rem 0;
    line-height: 20px;
}

p {
    margin: 0 0 1rem;
}

header {
    margin: 0 0 13px;
    display: flex;
    justify-content: center;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 20px;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
    margin: 0 0 4px;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 1.5625rem;
    text-indent: -1.25rem;
    color: #00B9F6;
}

.link {
    text-align: right;
}

.link a {
    color: #0563C8 !important;
    text-decoration: underline;
}

span {
    white-space: nowrap;
}

.justify {
    text-align: justify;
    hyphens: auto;
}

@media all and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 1rem;
    }

    :is(p, ul, h1) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br:not(footer br) {
        display: none;
    }

    .justify {
        text-align: left;
    }
}