@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 548px;
    border: solid 2px #BF3B96;
    background: #fff;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
p {
    padding-bottom: 0.7rem;
}
h1 {
    margin: 0 -1rem 0.7rem;
    font-size: 2.25em;
    padding: 1rem;
    line-height: 1.1em;
    background: #BF3B96;
    color: #fff;
    text-align: center;
}
h1 small {
    font-size: 0.78em;
    display: block;
    font-weight: normal;
}
h1 span {
    font-weight: normal;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 1.45em;
    line-height: 1.2;
}
header {
    padding: 0 0 0.5rem;
}
article {
    padding: 0 1rem;
}
article p:first-of-type {
    font-size: 1.253em;
    line-height: 1.3em;
    font-style: italic;
    padding: 0 0 1rem;
}
article p strong, h3 {
    color: #BF3B96;
}
footer {
    position: absolute;
    bottom: 2.25rem;
    right: 2.5rem;
}
@media only screen and (max-width:547px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p a {
        display: inline-block;
    }
    h1 {
        font-size: 1.5em;
    }
    .hide_m {
        display: none;
    }
    article :is(p:last-of-type, p:nth-last-of-type(2)) {
        text-align: center;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
        padding: 0 1rem 1rem;
    }
    article p:first-of-type {
        padding: 0 0 1rem;
    }
}