@charset "utf-8";
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v23-latin-regular.eot');
    src: local(''),
        url('../fonts/lato-v23-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lato-v23-latin-regular.woff2') format('woff2'),
        url('../fonts/lato-v23-latin-regular.woff') format('woff'),
        url('../fonts/lato-v23-latin-regular.ttf') format('truetype'),
        url('../fonts/lato-v23-latin-regular.svg#Lato') format('svg');
}
@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');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 400 1em/1.3em 'Lato', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 2px #D22127;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
h1, h2, strong {
    font-weight: 700;
}
p {
    padding-bottom: 1rem;
}
h1, p span.big, h2 {
    font-size: 1.5em;
    line-height: 1.2;
}
h1, p span.big {
    margin: 0;
    color: #D22127;
}
h1 span {
    font-size: 0.7em;
    color: #231F20;
}
h2 {
    color: #FFF;
    background: #D22127;
    text-align: center;
    padding: 0.5rem 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
article {
    padding: 1rem;
}
footer {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
}
.button {
    text-align: center;
    margin-top: 1rem;
}
.button a.color {
    background: #D22127;
    color: #FFF;
    text-transform: uppercase;
    padding: 0.5rem 3rem;
    border-radius: 5px;
    font-size: 1.2em;
    line-height: 1.3em;
    display: inline-block;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
}
@media only screen and (max-width: 668px) {
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}