@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #212529;
    font: 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #212529;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem;
}
p, .pb1 {
    padding-bottom: 1rem;
}
h1 {
    margin: 2rem 0 0.625rem;
    font-size: 2em;
    line-height: 1.2em;
    font-family: "Times New Roman", serif;
    font-style: italic;
}
h1+p{
    padding-bottom: 2rem;
}
h2 {
    font-size: 1.125em;
    line-height: 1.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
h1, h2 {
    color: #5C068C;
}
: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 2rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 2rem;
}
ul li:before {
    content: "\2022";
    font-size: 1.3em;
    float: left;
    margin: -1px 0 0 -1rem;
}
.small {
    font-size: 0.875em;
}
hr {
    border: 0;
    border-bottom: 1px solid #212529;
    opacity: 0.25rem;
    margin: 0 0 3rem;
}
.link {
    text-align: center;
}
.link a {
    display: inline-block;
    font-size: 1.125em;
    line-height: 1.5em;
    background-color: #5C068C;
    color: #fff !important;
    padding: 0.75rem 2.25rem;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
    h1 {
        font-size: 1.75em;
    }
    li {
        padding-left: 1rem;
    }
    .link a {
        padding: 0.75rem 1.625rem;
    }
}