@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #63C7CB;
    font: 400 1.125em/1.3em Tahoma, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 470px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    text-align: justify;
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    font-size: 1.1875rem;
    line-height: 1.3;
    background: #E2048C;
    color: #fff;
    padding: 0 1rem;
    text-transform: uppercase;
    transform: rotate(
-1deg);
    margin-top: -0.5rem;
}

h1 span {
    text-transform: none;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    width: fit-content;
    padding: 0.75rem 2rem 0.75rem 1.25rem;
    transform: skew(-5deg, -6deg);
    background: #E2048C;
    color: #fff;
    margin: 1rem 0 1rem -1.25rem;
}
h2 span {
    display: block;
    transform: skew(5deg, 5deg);
}
article {
    padding: 0.5rem 1rem 0;
}
footer {
    position: absolute;
    bottom: 1.5rem;
    right: 1rem;
}
footer p {
    padding-bottom: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.3;
}
@media only screen and (max-width: 469px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    br {
        display: none;
    }
    footer {
        position: static;
        display: flex;
        flex-direction: column;
        width: fit-content;
        margin: 1rem auto;
    }
}