@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: 610px;
    margin: 1rem auto;
    border: 4px solid #EF3E22;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.underline {
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0rem 0 2rem 1rem;
    line-height: 1.3;
    font-size: 1.313em;
}
h1:before {
    content: "\2022";
    font-size: 1.3em;
    line-height: 1;
    float: left;
    margin: 1px 0 0 -1rem;
}
h1 span:last-of-type {
    display: block;
    padding-top: 0.7rem;
}
.big {
    font-size: 1.188em;
}
img {
    max-width: 100%;
    height: auto;
}
main {
    display: block;
    border: 2px solid #D1D2D4;
    margin: 0.25rem;
    padding: 1rem 0.8rem 0;
}
header {
    padding: 0 0 0.5rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
}
footer {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
}
@media only screen and (max-width:609px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    main {
        border: none;
        padding: 1rem;
        margin: 0;
    }
    br {
        display: none;
    }
    p a, span {
        display: inline-block;
    }
    h1 {
        margin: 0 0 1rem 1.25rem;
    }
    header, footer {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 0.5rem;
    }
}