@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.6em/1.2em "Times New Roman", Times, serif;
}
#wrapper {
    position: relative;
    max-width: 460px;
    margin: 1rem auto;
    border: 2px solid #339076;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
h1 {
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    font: 700 1.55em/1.1em Arial, sans-serif;
}
h1 span {
    font-size: 0.65em;
    line-height: 1.2;
    text-transform: none;
    display: block;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    font-weight: 400;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
    text-transform: uppercase;
    color: #C8B493;
    margin-bottom: 0.5rem;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 0.9rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 0 0.5rem 0.25rem;
    display: flex;
    justify-content: flex-end;
}
article {
    padding: 0 1rem;
}
article p {
    padding-bottom: 0.5rem;
}
footer {
    padding: 0.75rem 1rem 0.5rem;
    background: #8D4550;
}
footer p {
    color: #fff;
    padding-bottom: 0.35rem;
    font-size: 1.063em;
}
footer p:last-of-type{
    background: #C8B493;
    margin: 0.25rem -1rem -0.5rem;
    padding: 0.5rem 1rem;
    color: #000;
    font-weight: 700;
    font-size: 1.042em;
}
@media only screen and (max-width:459px) {
    body{
        font-size: 1.25em;
        line-height: 1.3;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        white-space: nowrap;
    }
}