@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v51-latin-300.eot');
    src: url('../fonts/roboto-v51-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v51-latin-300.woff2') format('woff2'), url('../fonts/roboto-v51-latin-300.woff') format('woff'), url('../fonts/roboto-v51-latin-300.ttf') format('truetype'), url('../fonts/roboto-v51-latin-300.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v51-latin-regular.eot');
    src: url('../fonts/roboto-v51-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v51-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v51-latin-regular.woff') format('woff'), url('../fonts/roboto-v51-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v51-latin-regular.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #242021;
    font: 300 1em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 610px;
    margin: 1rem auto;
    border: solid 2px #BFA548;
    background: #fff;
    overflow: hidden;
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}
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 9rem;
    font-size: 2em;
    line-height: 1.1em;
    font-weight: 400;
}
h2 {
    font-size: 1.75em;
    line-height: 1.3em;
    font-weight: 300;
    text-transform: uppercase;
}
header p {
    padding-bottom: 2rem;
}
main {
    width: 52%;
    padding: 1rem 3rem 0 0;
    border-right: solid 2px #BFA548;
}
#wrapper:after {
    content: "";
    height: 0.75rem;
    background: #E4D6B0;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
#wrapper:before {
    content: "";
    height: 0.75rem;
    background: #E4D6B0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
@media only screen and (max-width:609px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        flex-direction: column;
        align-items: flex-start;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 {
        margin: 0 0 2rem;
    }
    main {
        border: 0;
        padding: 0;
        width: auto;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1.5rem 1rem;
    }
}