@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em "Trebuchet MS", sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 435px;
    border: solid 1px #000;
    background: #EAF3D4;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0.5rem 0;
    font-size: 1.250em;
    line-height: 1.1em;
}
h2 {
    font-size: 1.8em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding: 0 0 0 16px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    margin: 0 0 0 -16px;
    float: left;
}
header {
    padding: 0;
}
article {
    padding: 1rem 1.5rem;
    text-align: right;
}
article p:last-of-type {
    background: #fff;
    padding: 0.5rem 1.5rem;
    margin: 0 -1.5rem;
    text-align: left;
}
footer {
    padding: 0 1.5rem 1rem;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:434px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    article {
        text-align: left;
    }
    br {
        display: none;
    }
    h2 {
        font-size: 1.5em;
    }
}