@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.125em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 660px;
    margin: 1rem auto;
    border: 3px solid #E9671F;
    background: #fff;
    overflow: hidden;
    padding: 1rem 4rem 0;
    border-radius: 30px;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a[href^="mailto:"] {
    color: #1A499F;
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
h1, h2, footer p {
    color: #E9671F;
}
h1, .center {
    text-align: center;
}
h1 {
    margin: -0.25rem 0 0.75rem;
    font-size: 1.7em;
    line-height: 1.5;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-left: 2rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 0 0 1.25rem;
}
article p:first-of-type, h2+p {
    margin-left: 4.5rem;
}
@media only screen and (max-width:659px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    header {
        display: flex;
        justify-content: center;
    }
    article br {
        display: none;
    }
    article p:first-of-type, h2+p, h2 {
        margin-left: 0;
        text-align: center;
    }
}