@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Source+Serif+Pro:wght@300;400;600;700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.5em/1.2em 'Source Serif Pro', Arial, serif;
}
#wrapper {
    position: relative;
    max-width: 522px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 3px #7E8966;
    background: #E8E9E5;
    overflow: hidden;
    padding: 0.5rem 0.625rem 0;
}
a {
    color: #000;
    text-decoration: none;
}
p {
    padding-bottom: 0.7rem;
    text-align: center;
}
h1 {
    margin: 0 -0.625rem 0.5rem;
    padding: 0.75rem 0.625rem 0.75rem 2rem;
    background: #7E8966;
    color: #FFF;
    font-size: 1.7em;
    line-height: 1.1em;
    text-align: left;
    font-family: 'Montserrat', Arial, sans-serif;
}
h1 span {
    font-size: 0.57em;
    line-height: 1.3;
    display: block;
}
h1:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.25em;
    position: relative;
    float: left;
    top: -3px;
    margin-left: -1.5rem;
}
header>img {
    margin: 0.7rem 0;
}
header figure {
    display: flex;
    justify-content: center;
}
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}
/* Responsive */
@media only screen and (max-width: 520px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    body {
        font-size: 1.125em;
        line-height: 1.3em;
    }
    article br {
        display: none;
    }
}