@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #FFF;
    font: 1.1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/banner.jpg') no-repeat top right #084E8C ;
    overflow: hidden;
    padding: 2rem 1rem 1rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1em;
    line-height: 1.3;
    font-weight: normal;
    padding-left: 1rem;
}
h1:before {
    content: "•";
    float: left;
    margin: 0 0 0 -1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    text-decoration: underline;
}
h3 {
    font-size: 1.9em;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
h3+p{
    font-size: 1.1em;
    line-height: 1.3em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}img {
    max-width: 100%;
    height: auto;
}
.logo{
    position: absolute;
    top: 4rem;
    right: -1rem;
}
header figure{
    display: none;
}
article{
    width: 400px;
}
article p:last-of-type{
    font-size: 0.8em;
    line-height: 1.3em;
}
footer{
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        background-image: none;
    }
    p :is(a,span){
        display: inline-block;
    }
    .logo, footer{
        position: static;
        display: flex;
        justify-content: center;
    }
    header figure{
        display: block;
        margin: 2rem -1rem;
    }
    article{
        width: 100%;
    }
    h3{
        font-size: 1.5em;
    }
    h3+p br{
        display: none;
    }
}