@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #242021mi;
    font: bold 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 600px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff url('../images/bg.jpg') bottom left no-repeat;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
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 0 1rem;
    font-size: 1.4em;
    line-height: 1.1em;
    padding-left: 3.5rem;
}
h1:before {
    content: "•";
    float: left;
    font-size: 1.5em;
    margin: -1px 0 0 -1.5rem;
}
h1 span {
    font-size: 1.5em;
}
h2 {
    font-size: 1.4em;
    line-height: 1.3em;
    padding: 1rem;
    text-transform: uppercase;
    margin: 0.5rem -1rem;
    background: #0072BC;
    color: #fff;
    text-align: center;
}
article p {
    text-align: center;
    font-size: 1.25em;
}
figure {
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}
footer {
    text-align: center;
}
@media only screen and (max-width:599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 {
        padding-left: 1.5rem;
    }
    h1 span {
        font-size: 1.4em;
    }
}