:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@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');
}

html {
    min-height: 100%;
}

body {
    color: #701110;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 500px;
    margin: 16px auto;
    border: 1px solid #701110;
    background: #fff url('../images/background.jpg') no-repeat left bottom;
}

article {
    padding: 16px 20px 1px 50px;
    position: relative;
}

footer {
    padding: 0 50px 47px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 21px;
    line-height: 25px;
}

h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
}

h3 {
    font-weight: 700;
    font-size: 19px;
    line-height: 23px;
    position: absolute;
    z-index: 3;
    right: 16px;
    bottom: -11px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 100px 10px;
    list-style: none;
    font-size: 21px;
    line-height: 26px;
}

ul li {
    padding-left: 20px;
    position: relative;
}

li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #701110;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 10px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.margin {
    margin-left: -42px;
}

h2+p {
    margin-bottom: 13px;
}

footer :is(h2, p, a) {
    color: #fff !important;
}

@media all and (max-width: 499px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }
}

@media all and (max-width: 475px) {
    article {
        padding: 16px 16px 1px;
    }

    ul {
        padding: 0 0 16px;
    }

    .margin {
        margin-left: 0;
    }

    h3 {
        position: static;
        margin: 0 0 117px;
    }

    footer {
        padding: 0 16px 16px;
    }
}