@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 820px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 3rem;
}
p {
    padding-bottom: 1.125rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.8em;
    line-height: 1.3em;
    text-transform: uppercase;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 1.125rem;
    font-style: italic;
}
h3 {
    font-size: 1.563em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h1, h2 {
    color: #0070C0;
}
h2, h3 {
    font-weight: 400;
}
h1, h3 {
    text-align: center;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.color {
    text-decoration: underline;
    color: #0070C0;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 3.25rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -1.625rem;
}
header {
    padding: 0 0 1rem;
    display: flex;
    justify-content: center;
}
footer {
    position: absolute;
    right: 1.875rem;
    bottom: 1rem;
}
@media only screen and (max-width: 819px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
    article p:last-of-type {
        text-align: center;
    }
}
@media only screen and (max-width: 780px) {
    #wrapper {
        padding: 2rem;
    }
    li {
        padding-left: 2.5rem;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
    li {
        padding-left: 1.25rem;
    }
    ul li::before {
        margin-left: -1.25rem;
    }
    h1 {
        font-size: 1.6em;
    }
    h3 {
        font-size: 1.375em;
    }
}