@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: 565px;
    border: solid 2px #EE2E22;
    background: #fff;
    padding: 0.5rem 1rem 0;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0;
    font-size: 3em;
    line-height: 1;
}
h1 small {
    font-size: 1rem;
    text-transform: none;
}
.bg {
    background: #EE2E22;
    margin: 0 -1rem 0.5rem;
    padding: 0.5rem 1rem 0;
}
.bg :is(p, h1) {
    text-align: center;
}
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: 564px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
    :is(header, .bg) br {
        display: none;
    }
    h1 {
        font-size: 1.5em;
    }
    article p, h1 {
        text-align: center;
    }
}