@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');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font: 400 1rem/1.25rem 'Roboto', Arial, sans-serif;
    color: #231f20;
}

#wrapper {
    margin: 1rem auto;
    max-width: 500px;
    background-color: #fff;
    overflow: hidden;
    border: solid thin #40ae49;
}

article {
    padding: 0.375rem 0.75rem 0;
}

.text-center :is(h2, h3, p) {
    text-align: center;
}

footer {
    padding: 0 0.75rem 0.625rem;
}

p:not(:last-child) {
    margin-bottom: 0.3125rem;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 0.375rem 0;
    font-size: 1.5rem;
    line-height: 1.375rem;
    text-align: center;
    color: #40ae49;
}

h1 span {
    font-size: 72%;
}

h1 small {
    font-size: 73%;
    display: block;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.625rem;
    margin: 0.375rem 0 0;
}

h3 {
    font-size: 1rem;
    line-height: 1.375rem;
    margin: 0.625rem 0 0.125rem;
    color: #40ae49;
}

ul {
    margin: 0 0 10px 26px;
    list-style: none;
}

ul li:before {
    font-size: 25px;
    text-indent: -15px;
    float: left;
    content: "\2022";
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #231f20;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
}

@media screen and (max-width: 498px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    article {
        padding: 1rem 1rem 0;
    }

    footer {
        padding: 0 1rem 1rem;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    span {
        white-space: nowrap;
    }

    br:not(footer br) {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    ul {
        margin-left: 15px;
    }
}