:root {
    font-size: 16px;
}

@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');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    line-height: 22px;
    font-family: 'Roboto', Arial, sans-serif;
    color: #434343;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 685px;
    margin: 16px auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}

.content {
    padding: 16px 35px 0;
}

footer {
    padding: 30px 120px;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

h1 {
    margin: 20px 20px 25px;
    font-size: 26px;
    line-height: 32px;
    color: #E3000B;
}

h2 {
    margin: 10px 0;
    font-size: 18px;
    line-height: 28px;
    color: #E3000B;
}

p:not(:last-child) {
    margin-bottom: 30px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 30px;
    list-style: none;
}

ul li {
    padding-left: 20px;
}

ul li:before {
    content: "\2022";
    color: #434343;
    float: left;
    text-indent: -20px;
    font-size: 23px;
    line-height: 1em;
    font-family: Arial, sans-serif;
}

@media all and (max-width:685px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    .content {
        padding: 16px;
    }

    footer {
        padding: 0 16px 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    span {
        white-space: nowrap;
    }

    p:not(:last-child) {
        margin-bottom: 16px;
    }

    h1 {
        margin: 16px;
    }

    ul {
        margin: 0 0 16px;
    }
}