@charset "utf-8";
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v30-latin-500.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-500.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-500.woff') format('woff'),
        url('../fonts/roboto-v30-latin-500.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-500.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 500 1em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 5px solid #0BA3A7;
    background: #fff url('../images/bg.jpg') no-repeat;
    overflow: hidden;
    padding: 0;
    border-bottom: none;
    height: 586px;
}
:is(h1, h2, strong) {
    font-weight: 500;
}
: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;
    padding-left: 1rem;
    font-size: 1.25em;
    line-height: 1.4;
    position: relative;
}
h1:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
h2 {
    font-size: 2.2em;
    line-height: 1.2;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
hr {
    border: none;
    background: #62AFB2;
    height: 4px;
    margin: 0.5rem 0 1rem;
    max-width: 485px;
}
article {
    padding: 0.5rem 1rem 0;
}
footer {
    padding: 0;
    position: absolute;
    right: 8px;
    bottom: 10px;
}
footer p {
    font-size: 0.6em;
    line-height: 1.2;
}
figure {
    margin: 0;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #94C6CB;
        height: auto;
    }
    p a, span {
        display: inline-block;
    }
    br {
        display: none;
    }
    h2 {
        font-size: 1.7em;
    }
    header img {
        border-bottom: 5px solid #0BA3A7;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }
    footer p {
        font-size: 0.8em;
        line-height: 1.3;
        text-align: center;
    }
}