@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 1.25rem 3.125rem;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.color {
    color: #0000FF;
}
a.link {
    color: #0000FF;
    text-decoration: underline;
}
p {
    padding-bottom: 0.625rem;
}
.center, h1 {
    text-align: center;
}
h1 {
    margin: 0.75rem 0 1.5rem;
    font-size: 1.375rem;
    line-height: 1.5;
    text-decoration: underline;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}
ul {
    padding: 0 0 1.25rem 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 0 0 2.5rem;
    display: flex;
    justify-content: center;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.625rem;
}
.flex ul {
    padding-bottom: 0;
}
.flex li {
    margin-bottom: 0.625rem;
}
.left, .right {
    width: 44%;
}
footer {
    margin-top: 1.25rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
    h1 br{
        display: none;
    }
    ul{
        padding-left: 0;
    }
    header{
        padding-bottom: 1.5rem;
    }
}