@charset "utf-8";
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v23-latin-700.eot');
    src: local(''),
        url('../fonts/lato-v23-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lato-v23-latin-700.woff2') format('woff2'),
        url('../fonts/lato-v23-latin-700.woff') format('woff'),
        url('../fonts/lato-v23-latin-700.ttf') format('truetype'),
        url('../fonts/lato-v23-latin-700.svg#Lato') format('svg');
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/lato-v23-latin-900.eot');
    src: local(''),
        url('../fonts/lato-v23-latin-900.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lato-v23-latin-900.woff2') format('woff2'),
        url('../fonts/lato-v23-latin-900.woff') format('woff'),
        url('../fonts/lato-v23-latin-900.ttf') format('truetype'),
        url('../fonts/lato-v23-latin-900.svg#Lato') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 700 1.125em/1.3em 'Lato', Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 480px;
    margin: 1rem auto;
    border: 2px solid #006095;
    background: #fff;
    overflow: hidden;
}
:is(h1, strong) {
    font-weight: 900;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.313em;
    line-height: 1.3;
    position: relative;
    color: #006095;
}
h1:before {
    content: "\2022";
    font-size: 2rem;
    padding-right: 0.25rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    position: relative;
}
header a {
    position: absolute;
    top: 0;
    left: 0;
    width: 33%;
    height: 99%;
    z-index: 1;
}
article {
    padding: 1em 3rem;
}
article p:first-of-type {
    font-size: 1.313em;
    line-height: 1.3;
    position: absolute;
    left: 10rem;
    top: 3rem;
}
footer {
    padding: 0 1rem 1rem;
}
@media only screen and (max-width:479px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p a, span {
        display: inline-block;
    }
    article {
        padding: 1rem;
    }
    article p:first-of-type {
        position: static;
    }
    br:not(.block) {
        display: none;
    }
}