@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 590px;
    margin: 1rem auto;
    border: solid 2px #EE222D;
    border-radius: 4rem;
    background: #fff;
    overflow: hidden;
    padding: 3rem 2rem 2rem;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: -0.5rem 0 0.5rem;
    font-size: 1.75em;
    line-height: 1.1em;
}
footer {
    position: absolute;
    bottom: 1.5rem;
    right: 3rem;
}
@media only screen and (max-width:589px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        border: 0;
        padding: 1rem;
        border-radius: 0;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
        padding: 1rem;
    }
}