@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');
}
@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 5px #447DA8;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
h1, strong {
    font-weight: 700;
}
p {
    padding-bottom: 0.2rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.692em;
    line-height: 1.3;
    text-align: center;
    font-style: italic;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #231F20;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
main, .flex {
    display: flex;
    justify-content: space-between;
}
.flex {
    margin-left: -3.6rem;
}
article, footer {
    width: 48%;
}
article p {
    line-height: 1.5em;
}
footer strong {
    font-size: 0.9em;
}
.ml {
    margin-left: 3.5rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    main, .flex {
        flex-direction: column;
    }
    article, footer {
        width: 100%;
    }
    .ml, .flex {
        margin-left: 0;
    }
    .flex {
        align-items: center;
    }
    :is(h1, article) br {
        display: none;
    }
    p {
        text-align: center;
    }
}