@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #007E3A;
    font: 400 1em/1.3em Arial, sans-serif;
    text-align: center;
}
h1, h3, h4 {
    font-weight: 900;
}
#wrapper {
    position: relative;
    max-width: 450px;
    margin: 1rem auto;
    border: solid 2px #007E3A;
    background: #fff url('../images/bg.jpg') center center no-repeat;
    overflow: hidden;
    padding: 0.5rem 1rem;
}
p {
    padding-bottom: 1.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 1rem 0;
    font-size: 2.5em;
    line-height: 1.1em;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3em;
    font-weight: normal;
}
h3 {
    font-size: 1.875em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
h4 {
    font-size: 1.5em;
    line-height: 1.3em;
    margin: 2rem 0 0.75rem;
}
hr {
    border: 1px solid #007E3A;
    width: 60%;
    margin: 1rem auto;
}
@media only screen and (max-width: 449px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 {
        font-size: 1.75em;
    }
    h3 {
        font-size: 1.5em;
    }
}