@charset "utf-8";
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/barlow-v12-latin-300.eot');
    src: local(''),
        url('../fonts/barlow-v12-latin-300.eot?#iefix') format('embedded-opentype'),
        url('../fonts/barlow-v12-latin-300.woff2') format('woff2'),
        url('../fonts/barlow-v12-latin-300.woff') format('woff'),
        url('../fonts/barlow-v12-latin-300.ttf') format('truetype'),
        url('../fonts/barlow-v12-latin-300.svg#Barlow') format('svg');
}
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/barlow-v12-latin-800.eot');
    src: local(''),
        url('../fonts/barlow-v12-latin-800.eot?#iefix') format('embedded-opentype'),
        url('../fonts/barlow-v12-latin-800.woff2') format('woff2'),
        url('../fonts/barlow-v12-latin-800.woff') format('woff'),
        url('../fonts/barlow-v12-latin-800.ttf') format('truetype'),
        url('../fonts/barlow-v12-latin-800.svg#Barlow') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 300 1em/1.3em 'Barlow', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: solid 1px #0085CA;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
h1, h2 {
    font-weight: 800;
}
p {
    padding-bottom: 1rem;
}
p span.color {
    color: #0085CA;
}
h1 {
    margin: 0.5rem 0;
    font-size: 1.2em;
    line-height: 1.1;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
article {
    padding: 1rem 1.5rem 0;
}
footer {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
}
.tt :is(h1, h2) {
    color: #FFF;
}
.tt {
    position: relative;
    z-index: 999;
    margin: -13rem 0 6rem;
}
@media only screen and (max-width: 499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .tt {
        background: #00B6A3;
        margin: -7rem -1rem 1rem;
        padding: 1rem;
    }
    article {
        padding: 0 1rem;
    }
}