@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3 Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 655px;
    margin: 1rem auto;
    border: solid 1px #E7165C;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.7rem;
}
h1 {
    margin: 1rem 0 2rem;
    font-size: 1.45em;
    line-height: 1.1em;
    color: #E7165C;
    letter-spacing: 3px;
}
h1 small {
    font-size: 0.8em;
    display: block;
}
h2 {
    font-size: 1.375em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
}
article {
    padding: 0.75rem 0.75rem 0;
}
.link {
    font-size: 1.063em;
}
.mail {
    color: #E7165C;
    font-size: 1.375em;
}

footer {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-flow: row wrap;
}
footer p {
    text-align: center;
    width: 54%;
    padding: 0.7rem 1rem 0;
    font-size: 0.875em;
    line-height: 1.4;
    background: #DF1922;
    color: #FFF;
}
footer figure {
    margin: 1.5rem 0.5rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
@media only screen and (max-width:654px) {
  
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    article p br {
        display: none;
    }
    footer :is(p, figure) {
        width: 100%;
        padding-bottom: 0.5rem;
    }
    footer figure {
        display: flex;
        display: -ms-flexbox;
        display: -webkit-flex;
        -webkit-justify-content: center;
        justify-content: center;
        flex-flow: row wrap;
    }
    a.mail {
        font-size: 1.125em;
    }
}