@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 2em;
    line-height: 1.3;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 530px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #008B43;
    overflow: hidden;
    padding: 5rem 5rem 3rem;
}
p {
    padding-bottom: 1.75rem;
}
h1 {
    margin: 2rem 0 1.75rem;
    font-size: 1.35em;
    line-height: 1.1;
}
h1 span {
    font-weight: 400;
    display: block;
    font-size: 0.9em;
    line-height: 1.2;
}
h1 small {
    font-size: 0.75em;
    line-height: 1.3;
    display: block;
    font-weight: 400;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    display: flex;
    justify-content: center;
}
article p span {
    display: inline-block;
}
@media only screen and (max-width: 529px) {
    body {
        font-size: 1.5em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
}