@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.25em;
    line-height: 1.3;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 380px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 -0.5rem 0.5rem;
    padding: 0.75rem 0.5rem;
    font-size: 1.6em;
    line-height: 1.2;
    background: #C40C37;
    color: #fff;
}
h1 span {
    font-size: 1.125rem;
    display: block;
    line-height: 1.3;
}
h1 span:not(:first-of-type) {
    font-size: 1.313rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
article {
    padding: 0.5rem 0.5rem 0;
}
footer {
    padding: 0.5rem;
}
@media only screen and (max-width:379px) {
    body {
        font-size: 1.25em;
        line-height: 1.3;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    article p br {
        display: none;
    }
}