@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em "Times New Roman", Times, serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 680px;
    margin: 1rem auto;
    border: 2px solid #000;
    background: #EE1D23;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 3em;
    line-height: 1;
}
h1 span {
    font-weight: 400;
}
h1 small {
    font-size: 1.313rem;
    line-height: 1.3;
    display: block;
    font-weight: 400;
    margin-top: 0.125rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
article {
    padding: 0.5rem 12rem 0 1rem;
}
footer {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}
@media only screen and (max-width:679px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p a, span {
        display: inline-block;
    }
    h1 br {
        display: none;
    }
    h1 {
        font-size: 2.5em;
    }
    article {
        padding-right: 1rem;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
        padding: 1rem;
    }
}