@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em "Time New Roman", serif;
}
#wrapper {
    position: relative;
    max-width: 570px;
    margin: 1rem auto;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.5em;
    line-height: 1.3;
    text-align: center;
}
h2 {
    font-size: 1.375em;
    line-height: 1.3em;
    text-align: center;
    margin-bottom: 0.5rem;
}
main {
    padding: 0.75rem 1rem 0;
    border: 2px solid #D5264E;
    border-top: 0;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
footer p:last-of-type {
    text-align: right;
}
@media only screen and (max-width:569px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    footer {
        flex-direction: column;
    }
    footer :is(p, p:last-of-type) {
        text-align: center;
    }
}