@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v30-latin-300.eot');
    src: url('../fonts/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-300.woff2') format('woff2'), url('../fonts/roboto-v30-latin-300.woff') format('woff'), url('../fonts/roboto-v30-latin-300.ttf') format('truetype'), url('../fonts/roboto-v30-latin-300.svg#Roboto') format('svg');
}

@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: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 19px;
    line-height: 24px;
    font-weight: 400;
}

#wrapper {
    max-width: 450px;
    margin: 16px auto;
    border: 1px solid #cbcbcb;
    position: relative;
    background-color: #fff;
}

article {
    padding: 10px 14px 0;
    background: #556670;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 8px;
    right: 5px;
    z-index: 1;
    gap: 4px;
}

.font {
    font-weight: 300;
    font-size: 16px;
}

.background {
    background: #a9bb57;
    padding: 8px 14px;
    margin: 10px -14px 0;
}

h1 {
    margin: 14px 0;
    font-weight: 700;
    font-size: 26px;
    line-height: 33px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 25px;
    list-style: none;
}

ul li {
    padding-left: 24px;
    margin: 8px 0;
}

li:before {
    content: url('../images/icon.jpg');
    float: left;
    font-size: 25px;
    text-indent: -24px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 449px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    article {
        padding: 12px 16px;
    }

    .background {
        margin: 12px -16px 0;
        text-align: center;
    }

    footer {
        position: static;
        padding: 1px 16px 16px;
        background: #556670;
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br {
        display: none;
    }
}