@font-face {
    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-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');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/roboto-v30-latin-900.eot');
    src: local(''), url('../fonts/roboto-v30-latin-900.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-900.woff2') format('woff2'), url('../fonts/roboto-v30-latin-900.woff') format('woff'), url('../fonts/roboto-v30-latin-900.ttf') format('truetype'), url('../fonts/roboto-v30-latin-900.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: 1rem;
    line-height: 1.25rem;
    font-weight: 400;
}

#wrapper {
    max-width: 550px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #009963;
    position: relative;
}

.logo {
    position: absolute;
    top: 2.1875rem;
    right: 2.1875rem;
}

article {
    padding: 0.3125rem 2.1875rem 0;
    position: relative;
}

.background {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f7acab;
    padding: 10px;
    text-align: center;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8125rem;
    line-height: 1.125rem;
    transform: rotate(10deg);
}

.background span {
    font-size: 114%;
    letter-spacing: -1px;
}

hr {
    border: none;
    height: 1px;
    background: #fff;
}

footer {
    padding: 0.75rem 2.1875rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

footer p {
    flex: 1 1 0;
    margin: 0;
}

p:not(.background) {
    margin: 0 0 0.625rem;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 1.25rem 0 2px;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.75rem;
}

h1 small {
    display: block;
    font-weight: 400;
    font-size: 1.1875rem;
    line-height: 1.5rem;
}

h1 + p{
    font-size: 110%;
}

h2 {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4375rem;
}

h3 {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.375rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
}

ul {
    padding: 0 0 0.625rem;
    list-style: none;
    width: 383px;
}

ul li {
    padding-left: 0.75rem;
    margin-bottom: 0.1875rem;
}

li:before {
    content: '\2022';
    float: left;
    font-size: 1.5625rem;
    text-indent: -0.75rem;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

@media all and (max-width: 550px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    .logo {
        top: 1rem;
        right: 1rem;
    }

    article {
        padding: 0.5rem 1rem 0;
    }

    .background {
        right: 1rem;
    }

    footer {
        padding: 1rem;
    }

    ul {
        width: 350px;
    }

    :is(a, span) {
        white-space: nowrap;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br:not(.background br, footer br) {
        display: none;
    }
}

@media all and (max-width: 518px) {
    .background {
        position: static;
        margin: 0 auto 1rem;
    }

    ul {
        width: auto;
    }
}

@media all and (max-width: 424px) {
    footer {
        flex-direction: column;
    }

    footer p {
        text-align: center;
    }
}