@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.1875em/1.3 Segoe, "Segoe UI", Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 560px;
    margin: 1rem auto;
    border: 4px solid #33A182;
    background: #fff;
    overflow: hidden;
    padding: 0.8rem 0.8rem 0;
}
p {
    padding-bottom: 0.625rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.7em;
    line-height: 1;
    color: #33A182;
    font-style: italic;
    font-family: Arial, sans-serif;
}
h1 span {
    font-size: 1.313rem;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
footer{
    font-size: 1.15em;
    line-height: 1.25;
}
@media only screen and (max-width:559px) {
    body{
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.8rem;
    }
    article p br:first-of-type{
        display: none;
    }
}