@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.125em/1.3 Arial, sans-serif;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 570px;
    border: solid 2px #EF4B2B;
    background: #fff;
    padding: 1.3rem 0.5rem 0.5rem;
    text-align: center;
}
figure {
    margin: 0.5rem -0.5rem;
}
p {
    padding-bottom: 0.3rem;
}
h1 {
    margin: 0;
    padding: 0 0 0.5rem;
    font-size: 1.25em;
    line-height: 1.1em;
    color: #EF4B2B;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
h1, h1+p, a span {
    font-family: Verdana, Arial, sans-serif;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
    text-align: center;
}
li:before {
    content: '';
    width: 7px;
    height: 2px;
    background: #EF4B2B;
    display: inline-block;
    margin: -4px 5px 5px 0;
}
article p:first-of-type strong {
    font-family: "Times New Roman", Times, serif;
}
footer {
    padding: 0.5rem 0 1.5rem;
}
footer img {
    margin-top: 5px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
@media only screen and (max-width: 569px) {
    body {
        font-size: 1em;
        line-height: 1.3;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    article br {
        display: none;
    }
    p a, span {
        display: inline-block;
    }
}