@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 2rem 5rem;
}
p {
    padding-bottom: 1.8rem;
}
h1 {
    margin: 0 0 1.8rem;
}
h1, h2 {
    font-size: 1em;
    line-height: 1.5em;
}
h2 {
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0.5rem 0 2rem;
    list-style: none;
}
li {
    padding-left: 2rem;
}
li:before {
    content: "\2022";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -2rem;
}
header {
    padding: 0 0 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}
header p {
    padding: 0;
    font-size: 1.125em;
    line-height: 1.1em;
}
.flexbox {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
}
.box {
    width: 298px;
}
.flexbox figure {
    width: 324px;
    margin: 0.4rem 0 0;
}
footer {
    margin-top: 1rem;
}
a.underline {
    color: #0462C1;
    text-decoration: underline;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 3rem;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:768px) {
    #wrapper {
        padding: 2rem;
    }
    header, .flexbox figure {
        display: flex;
        justify-content: center;
        padding-bottom: 2rem;
    }
    h1 br {
        display: none;
    }
    .flexbox {
        flex-direction: column;
    }
    .box, .flexbox figure {
        width: 100%;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    li {
        padding-left: 1rem;
    }
    li:before {
        margin-left: -1rem;
    }
}
@media only screen and (max-width:350px) {
    header {
        flex-direction: column;
        align-items: center;
    }
    header p {
        line-height: 1.3;
    }
    footer a {
        font-size: 0.85em;
    }
}