@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 650px;
    margin: 1rem auto;
    border: 4px solid #EF3E22;
    background: #fff;
    overflow: hidden;
    padding: 1rem 0.8rem 0.1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.underline {
    text-decoration: underline;
}
p {
    padding-bottom: 0.375rem;
}
.pb {
    padding-bottom: 0.625rem;
}
h1 {
    margin: 0rem 0 0 1rem;
    line-height: 1.2;
    font-size: 1.375em;
}
h1:before {
    content: "\2022";
    font-size: 1.3em;
    line-height: 1;
    float: left;
    margin: 3px 0 0 -1rem;
}
h1+p {
    padding-left: 1rem;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    padding: 0 0 0.5rem;
    position: absolute;
    right: 1rem;
    top: 1.5rem;
}
footer {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}
@media only screen and (max-width: 649px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
 
    br {
        display: none;
    }
    p a, span {
        display: inline-block;
    }
    h1 {
        margin: 0 0 0 1.25rem;
    }
    header, footer {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 0.5rem;
    }
}
@media only screen and (max-width: 649px) {
    h1 {
        font-size: 1.25em;
    }
}