@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.25em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 585px;
    margin: 1rem auto;
    border: solid 7px #3DAE59;
    background-color: #fff;
    overflow: hidden;
    padding: 1.5rem 0.5rem 0;
}
p {
    padding-bottom: 0.5rem;
}
.pb {
    padding-bottom: 2rem;
}
h1 {
    margin: 0.25rem -0.5rem;
    font-size: 1.5em;
    line-height: 1.3em;
    background-color: #3DAE59;
    padding: 1.25rem 0.5rem;
    color: #fff;
}
h1, .center {
    text-align: center;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    padding: 0 0 1.5rem;
    display: flex;
    justify-content: center;
}
footer {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
}
@media only screen and (max-width: 584px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    br {
        display: none;
    }
    p a {
        display: inline-block;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}