: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: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    border: 1px solid #000;
    background: #E84D2E;
    position: relative;
}

header {
    padding: 10px 20px 0;
}

article {
    padding: 20px 20px 0 230px;
}

footer {
    padding: 0 20px 20px 230px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
    color: #FFF;
}

p {
    margin: 0 0 15px;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 0 0 5px;
    font-size: 26px;
    line-height: 32px;
}

h2 {
    font-size: 16px;
    line-height: 19px;
}

h3 {
    margin: 0 0 15px;
    font-size: 24px;
    line-height: 31px;
}

footer h2 {
    font-size: 20px;
    line-height: 21px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 15px 10px;
    list-style: none;
}

ul li {
    padding-left: 1rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    text-indent: -1rem;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

footer p {
    margin: 0;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.flex div {
    width: 48%;
}

.images {
    position: absolute;
    bottom: 0;
    left: 0;
}

.title {
    background: #79BA44;
    padding: 10px 20px 10px 40px;
    -webkit-border-top-left-radius: 70px;
    -webkit-border-bottom-left-radius: 70px;
    -moz-border-radius-topleft: 70px;
    -moz-border-radius-bottomleft: 70px;
    border-top-left-radius: 70px;
    border-bottom-left-radius: 70px;
    margin: 0 -20px 24px -20px;
    position: relative;
}

.title p {
    margin: 0 0 0 10px;
}

@media all and (max-width: 799px) {
    #wrapper {
        margin: 0;
        border: none;
        hyphens: auto;
    }

    article {
        padding: 0 16px;
    }

    footer {
        padding: 0 16px 16px;
    }

    .title {
        margin: 0 -1rem 1rem;
    }

    .images {
        position: static;
    }

    h1 br {
        display: none;
    }

    header {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

@media all and (max-width: 500px) {
    footer {
        flex-wrap: wrap;
    }

    .flex {
        display: block;
    }

    .flex div {
        width: auto;
    }
}