@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot');
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 400 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
    color: #000;
}
h1, strong {
    font-weight: 700;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 490px;
    border: solid 2px #243F91;
    background: #fff;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 -1rem 0.25rem;
    padding: 0.3rem 1rem 0.15rem;
    font-size: 1.55em;
    line-height: 1.1em;
    background: #243F91;
    color: #fff;
    text-transform: uppercase;
}
h1 small {
    font-size: 1rem;
    text-transform: none;
}
header p {
    text-align: center;
}
footer {
    position: absolute;
    right: 1rem;
    bottom: 3px;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:489px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
    header br {
        display: none;
    }
    h1 {
        font-size: 1.5em;
    }
    article p, h1 {
        text-align: center;
    }
}