@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.125em/1.2em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 550px;
    margin: 1rem auto;
    border: 2px solid #0B9DA1;
    background: #fff url('../images/bg.jpg') no-repeat;
    overflow: hidden;
    padding: 0.5rem 2rem 0.5rem 2.5rem;
    height: 641px;
}
.content {
    transform: rotate(-3deg);
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.75rem;
}
h1 {
    margin: 4rem 0 5.5rem 0;
    font-size: 1.125em;
    line-height: 1.2;
    font-family: "Arial Black", Arial, sans-serif;
    color: #fff;
    text-transform: uppercase;
}
h1 span {
    font-size: 0.85em;
    text-transform: none;
}
h2 {
    font-size: 1em;
    line-height: 1.2;
    color: #0B9DA1;
    text-transform: uppercase;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.text {
    font-weight: 700;
    color: #0B9DA1;
    margin: 0.8rem 0 1rem;
    margin-left: -0.25rem;
    font-size: 0.8em;
}
header {
    padding: 0 0 0 2rem;
}
header p, article :is(p, li, h2) {
    text-shadow: 1px 0 0 #EAEAEA, -1px 0 0 #EAEAEA, 0 1px 0 #EAEAEA, 0 -1px 0 #EAEAEA, 1px 1px #EAEAEA, -1px -1px 0 #EAEAEA, 1px -1px 0 #EAEAEA, -1px 1px 0 #EAEAEA;
}
article {
    margin-left: 1.5rem;
}
footer div {
    padding-left: 12rem;
    margin-bottom: 0.25rem;
}
footer div p:last-of-type {
    padding-bottom: 0;
}
footer p {
    color: #fff;
    font-size: 0.8em;
    line-height: 1.3;
}
footer>p {
    text-transform: uppercase;
    font-size: 0.825em;
    margin-left: -1rem;
}
.logo {
    position: absolute;
    left: -13rem;
    bottom: 2rem;
}
@media only screen and (max-width:549px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
        height: auto;
        padding: 1rem 1rem 0;
    }
    p {
        line-height: 1.3;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .content {
        transform: none;
    }
    h1 {
        text-align: center;
    }
    h1, footer {
        background: #0B9DA1;
        margin: 0 -1rem 1rem;
        padding: 0.5rem 1rem;
    }
    br:not(footer br) {
        display: none;
    }
    header p, article :is(p, li, h2) {
        text-shadow: none;
    }
    header {
        padding: 0;
    }
    article {
        margin-left: 0;
    }
    .text {
        margin: 0;
    }
    .logo {
        position: static;
        display: flex;
        justify-content: center;
        margin: 0.5rem 0;
    }
    footer div {
        padding-left: 0;
    }
    footer p {
        text-align: center !important;
        margin-left: 0 !important;
    }
}