@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 1.25em/1.4em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 540px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #1E1E1C url('../images/bg.jpg') repeat-x bottom;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
:is(p, h1) {
    text-align: center;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 3rem;
    font-size: 1.25em;
    line-height: 1.3;
    font-weight: normal;
}
h1 span {
    position: relative;
    padding-left: 1.25rem;
}
h1 span:before {
    content: "\25A0";
    font-size: 0.7rem;
    position: absolute;
    left: 0;
    top: 11px;
    color: #fff;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
header {
    padding: 1.5rem 1rem 1rem;
    display: flex;
    justify-content: center;
}
article {
    padding: 0 1rem 2rem;
}
article p:first-of-type {
    font-size: 1.25em;
    line-height: 1.3;
    padding: 2rem 0 3rem;
}
@media only screen and (max-width:539px) {
    body {
        font-size: 1.063em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    h1 span:before {
        top: 8px;
    }
}