@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #571200;
    font: 1.25em/1.3em Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 490px;
    height: 541px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #faca32 url('../images/bg.jpg') no-repeat top left;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: -0.25rem 0 0;
    font-size: 1em;
    line-height: 1.1em;
}
h2 {
    font-size: 2.188em;
    line-height: 1.3em;
    text-transform: uppercase;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    padding: 0.1rem 0 0.75rem;
}
footer {
    margin-top: -0.5rem;
}
@media only screen and (max-width:489px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
        height: auto;
    }
    header, footer {
        padding: 0.5rem 1rem 0.75rem;
    }
    h2 {
        font-size: 1.75em;
        line-height: 1.3em;
    }
}