@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-pro-v21-latin-regular.eot');
    src: url('../fonts/source-sans-pro-v21-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/source-sans-pro-v21-latin-regular.woff2') format('woff2'),
        url('../fonts/source-sans-pro-v21-latin-regular.woff') format('woff'),
        url('../fonts/source-sans-pro-v21-latin-regular.ttf') format('truetype'),
        url('../fonts/source-sans-pro-v21-latin-regular.svg#SourceSansPro') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/source-sans-pro-v21-latin-700.eot');
    src: url('../fonts/source-sans-pro-v21-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/source-sans-pro-v21-latin-700.woff2') format('woff2'),
        url('../fonts/source-sans-pro-v21-latin-700.woff') format('woff'),
        url('../fonts/source-sans-pro-v21-latin-700.ttf') format('truetype'),
        url('../fonts/source-sans-pro-v21-latin-700.svg#SourceSansPro') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3 'Source Sans Pro', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 510px;
    margin: 1rem auto;
    border: solid 2px #00A68B;
    background-color: #fff;
    overflow: hidden;
    padding: 0.7rem 0.7rem 0.3rem;
}
p {
    padding-bottom: 0.75rem;
    text-align: justify;
}
p span {
    display: inline-block;
}
h1 {
    margin: 0 0 0.75rem;
    font-size: 1em;
    line-height: 1.3;
    color: #00A68B;
}
h1 span {
    font-size: 2em;
}
h2 {
    font-size: 1.125em;
    line-height: 1.2;
    color: #00A68B;
    margin-bottom: 0.75rem;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    position: absolute;
    top: 16px;
    right: 0.9rem;
}
article section p, h1 {
    text-align: center;
}
.width {
    width: 290px;
}
@media only screen and (max-width: 509px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p {
        text-align: left;
    }
    header {
        position: static;
        display: flex;
        justify-content: flex-end;
        padding-bottom: 0.5rem;
    }
    .width {
        width: auto;
    }
}