@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.17em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 505px;
    margin: 1rem auto;
    border: solid 1px #ED028C;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
    box-shadow: 0.4rem 0.4rem 0rem #ED028C;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.65em;
    line-height: 1.1;
    color: #ED028C;
}
h1 span {
    font-size: 0.6em;
}
h1 small{
    font-size: 0.75em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
footer {
    position: absolute;
    bottom: 2.45rem;
    right: 1rem;
}
@media only screen and (max-width:504px) {
    body{
        font-size: 1em;
        line-height: 1.3em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        box-shadow: none;
    }
    p :is(a, span) {
        display: inline-block;
    }
    header br{
        display: none;
    }
    footer{
        position: static;
        display: flex;
        justify-content: center;
    }
}