@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em 'Calibri', Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 15px #D7B874;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 3rem;
}
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: 1.5rem 0 0.5rem;
    font-size: 1.44em;
    line-height: 1.3em;
    text-align: center;
}
h1+p {
    text-align: center;
    font-size: 1.28em;
    line-height: 1.3em;
    padding-bottom: 2.5rem;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
    font-weight: normal;
}
h1, h2, h3, a.color {
    color: #BF8F00;
}
h3 {
    font-size: 1em;
    line-height: 1.3em;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li:before {
    content: "\2022";
    margin-right: 0.5rem;
}
header a {
    padding: 0 1rem 0 0;
    width: 33%;
}
header figure {
    overflow: hidden;
    width: 67%;
    margin: 0;
    border: 2px solid #D7B874;
}
header figure img {
    display: block;
}
header {
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    header {
        display: block;
    }
    header a {
        display: block;
        margin: 0 auto 1rem;
        width: fit-content;
    }
    header figure {
        width: auto;
    }
}