@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.125em/1.4em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 730px;
    margin: 1rem auto;
    border: 4px solid #EF3E22;
    background: #fff;
    overflow: hidden;
    padding: 0.5rem 1rem 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
a.ins {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 1rem 1rem;
    font-size: 1.063em;
    line-height: 1.3;
}
h1:before {
    content: "\2022";
    font-size: 1.3rem;
    float: left;
    margin: -3px 0 0 -1rem;
}
h1 span {
    font-weight: normal;
}
h1+p {
    padding-bottom: 0.75rem;
}
h1~p{
    font-size: 1rem;
}
header {
    padding: 0 0 1rem;
    position: absolute;
    right: 0.6rem;
    top: 0.5rem;
}
article>p:first-of-type{
    padding-bottom: 1rem;
}
footer {
    position: absolute;
    right: 0.6rem;
    bottom: 0.25rem;
}
@media only screen and (max-width:729px) {
    body {
        font-size: 1em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    br {
        display: none;
    }
    p :is(a, span) {
        display: inline-block;
    }
    :is(header, footer) {
        position: static;
        display: flex;
        justify-content: center;
    }
    h1 {
        margin: 0.5rem 0 1rem 1rem;
    }
    h1 span {
        display: block;
    }
    h1+p {
        padding-bottom: 1rem;
    }
}