@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: 750px;
    margin: 16px auto;
    border: 2px solid #000;
    padding: 14px 16px 16px;
    background-color: #fff;
    position: relative;
}

header {
    padding: 0 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    gap: 50px;
}

header img {
    max-width: 155px;
}

article {
    padding: 20px 239px 0 0;
}

footer {
    background: #dfdfdf;
    padding: 106px 46px 18px;
    position: absolute;
    bottom: 0;
    right: 0;
}

footer :is(h3, p) {
    text-align: center;
    color: #fff;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 4px 0;
    font-size: 24px;
    line-height: 28px;
}

:is(h1 span, h2) {
    font-size: 16px;
}

h2 {
    margin: 16px 0 0;
}

h3 {
    margin: 40px 0 330px;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 8px;
    list-style: none;
}

ul li {
    padding-left: 14px;
}

li:before {
    content: '\2022';
    float: left;
    font-size: 26px;
    text-indent: -14px;
}

img {
    max-width: 100%;
}

@media all and (max-width: 748px) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
        border: none;
    }

    header {
        flex-direction: column;
        gap: 16px;
        padding: 0;
    }

    article {
        padding: 20px 0;
    }

    footer {
        position: static;
        padding: 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h3 {
        margin: 0 0 20px;
    }

    span {
        white-space: nowrap;
    }

    br:not(.mobile br) {
        display: none;
    }
}