@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: 24px;
    font-weight: 400;
}

#wrapper {
    max-width: 545px;
    margin: 16px auto;
    border: 3px solid #8dc63f;
    background-color: #fff;
}

article {
    padding: 0 16px;
}

.background {
    margin: 0 -16px 12px;
    background: #ebf4de;
    padding: 10px 22px 10px 16px;
}

footer {
    padding: 32px 16px 12px;
    background: #8dc63f;
}

footer p {
    color: #fff;
    margin: 40px 0 0 115px;
    font-size: 17px;
}

p {
    margin: 0 0 16px;
}

span {
    white-space: nowrap;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 0 0 6px;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
}

h1 small {
    display: block;
    font-size: 18.6px;
    line-height: 24px;
    font-weight: 400;
    margin: 0 0 8px;
}

h1 span {
    display: block;
    text-align: right;
    font-size: 19px;
    font-weight: 400;
    margin: 0 10px 0 0;
}

h2 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 28px;
    text-align: center;
    color: #8dc63f;
}

h3 {
    margin: 0 0 3px;
    font-size: 19px;
    line-height: 24px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 14px;
    list-style: none;
}

ul li {
    padding-left: 16px;
}

li strong {
    display: block;
}

li:before {
    content: '\25A0';
    color: #8dc63f;
    float: left;
    margin-top: -1px;
    font-size: 16px;
    text-indent: -16px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 544px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    header {
        background: #8dc63f;
        padding: 0 3px;
    }

    footer {
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    footer p {
        margin: 0;
        text-align: center;
    }

    h1 {
        font-size: 36px;
        line-height: 1.1;
        margin: 0 0 16px;
    }

    h1 span {
        margin: 6px 0 0;
        text-align: center;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }
}