@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.125em/1.2em Calibri, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 540px;
    margin: 1rem auto;
    border: none;
    background: #fff url('../images/bg.jpg') no-repeat top center;
    background-size: 100% 100%;
    overflow: hidden;
    padding: 1.5rem 1.25rem 1rem;
}
p {
    padding-bottom: 0.75rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.8em;
    line-height: 0.8;
}
h1 small {
    font-size: 1.125rem;
}
h1 span {
    font-weight: normal;
}
h2 {
    font-size: 1em;
    line-height: 1.2em;
    margin-bottom: 0.5rem;
    text-decoration: underline;
    min-width: 113px;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    padding: 0 0 0.5rem;
    display: flex;
    justify-content: center;
}
article aside {
    display: flex;
}
article aside p {
    padding-bottom: 0.5rem;
}
footer p {
    font-size: 1.1em;
    line-height: 1.2em;
    padding-bottom: 0;
}
@media only screen and (max-width: 539px) {
    body {
        font-size: 1em;
        line-height: 1.2em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        background-image: none;
    }
    article aside {
        display: block;
    }
    br {
        display: none;
    }
}