@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 4rem;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.125em;
    line-height: 1.1em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    color: #008080;
    position: relative;
    margin-bottom: 0.5rem;
}
h2:before {
    content: "";
    width: calc(100% - 4.75rem);
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    border: 1px solid #008080;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1.75rem;
}
li:before {
    content: "\01F5F8";
    float: left;
    margin: -1px 0 0 -1.75rem;
}
footer {
    margin-top: 2rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
}