@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
p, h2 {
    color: #BD0780;
}
h1 {
    margin: 0 0 0.5rem;
    padding-left: 0.8rem;
    font-size: 1.4em;
    line-height: 1.2;
    font-weight: 400;
    position: relative;
}
h1:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 1px;
}
h2 {
    font-size: 1.6em;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 0;
}
article {
    padding: 1rem;
    border-inline: 2px solid #C4C4C4;
}
article p {
    font-size: 1.6em;
    line-height: 1.2;
}
footer {
    position: relative;
}
footer a:nth-of-type(1) {
    position: absolute;
    bottom: 4%;
    left: 5%;
    width: 67%;
    height: 45%;
}
footer a:nth-of-type(2) {
    position: absolute;
    top: 23%;
    right: 6%;
    width: 29%;
    height: 51%;
    z-index: 2;
    transform: rotate(6deg);
}
figure {
    margin: 0;
}
@media only screen and (max-width:499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p a, span {
        display: inline-block;
    }
    article{
        border: none;
    }
    footer{
        margin: 0 -2px;
    }
    footer img{
        width: 100%;
    }
    br{
        display: none;
    }
}
