@font-face {
    font-display: swap;
    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-display: swap;
    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');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    border: 1px solid #000;
    background: #f5f5f5;
}

header {
    padding: 20px 30px;
}

article {
    padding: 0 30px;
}

.title {
    background: #808284;
    padding: 0 0 0 30px;
    margin: 0 -30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

footer {
    padding: 10px 16px 36px;
    display: flex;
    justify-content: center;
}

footer a {
    display: inline-block;
    padding: 12px 30px;
    background: #1e1e1e;
}

footer a:hover {
    background: #A26028;
}

h1 {
    margin: 20px 0 0;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.4;
    color: #fff;
    flex: 1 1 0;
}

h2 {
    font-weight: 700;
    font-size: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 30px;
    list-style: none;
}

ul li {
    padding-left: 50px;
    margin: 12px 0;
}

li:before {
    content: '\2022';
    float: left;
    font-size: 25px;
    text-indent: -20px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 798px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br {
        display: none;
    }
}

@media all and (max-width: 683px) {
    header {
        padding: 16px;
    }

    article {
        padding: 0 16px;
    }

    .title {
        padding: 0 0 0 16px;
        margin: 0 -16px 30px;
    }
}

@media all and (max-width: 590px) {
    .title {
        display: block;
        padding: 16px;
    }

    h1 {
        margin: 0 0 16px;
    }

    .title img {
        width: 100%;
    }

    ul li {
        padding-left: 20px;
    }
}