: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: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 400;
}

#wrapper {
    max-width: 500px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    position: relative;
}

article {
    padding: 0.625rem 1.25rem 0.1875rem 1.875rem;
}

footer {
    position: absolute;
    z-index: 3;
    right: 1.25rem;
    bottom: 1rem;
}

p {
    margin: 0 0 1rem;
}

strong {
    font-weight: 700;
}

h1 {
    padding: 0.1875rem 1.25rem;
    font-weight: 700;
    font-size: 1.8125rem;
    line-height: 2.1875rem;
    background: #f5821f;
    color: #fff;
}

h2 {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25rem;
    color: #1fa345;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 1rem;
    list-style: none;
    margin-left: -0.625rem;
}

ul li {
    padding-left: 0.75rem;
    position: relative;
}

li:before {
    content: "";
    width: 0.3125rem;
    height: 0.3125rem;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0.4375rem;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.color {
    color: #1fa345 !important;
}

header p {
    padding: 1rem 1.25rem;
    background: #1fa345;
    color: #fff;
    margin: 0;
    text-align: justify;
}

h1 small {
    font-size: 1rem;
    line-height: 1.25rem;
}

@media all and (max-width: 499px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    header p {
        text-align: left;
    }

    footer {
        right: 1rem;
    }
}

@media all and (max-width: 470px) {
    article {
        padding: 1rem 1rem 0.0625rem;
    }

    ul {
        margin: 0;
    }

    .none {
        display: none;
    }

    footer {
        position: static;
        padding: 0 1rem 1rem;
    }
}