@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #45494B;
    font: 1em/1.6 Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 922px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 3rem 5rem;
}
p {
    padding-bottom: 1.5rem;
}
.justify {
    text-align: justify;
}
h1 {
    margin: 0.5rem -3rem 1.5rem;
    font-size: 2.1em;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
}
h1 span {
    display: inline-block;
}
h2 {
    font-size: 1em;
    line-height: 1.5;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -1rem;
}
header {
    display: flex;
    justify-content: center;
}
hr {
    margin: 1.25rem auto 1.5rem;
    width: 25%;
    border: 0;
    border-bottom: 1px solid #45494B;
}
footer {
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-width: 921px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .justify {
        text-align: left;
    }
    p, li {
        hyphens: auto;
    }
    h1 {
        font-size: 1.75em;
    }
    article br {
        display: none;
    }
}
@media only screen and (max-width: 820px) {
    footer {
        display: block;
    }
    footer p {
        text-align: center;
        padding-bottom: 1rem;
    }
}
@media only screen and (max-width: 780px) {
    #wrapper {
        padding: 2rem;
    }
    h1 {
        margin: 0 -1rem 1rem;
        font-size: 1.5em;
        line-height: 1.25;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
    hr {
        margin: 1rem auto;
        width: 60%;
    }
    h1 {
        margin: 0 0 1rem;
        font-size: 1.375em;
        line-height: 1.25;
    }
}