@charset "utf-8";
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/work-sans-v24-latin-600.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/work-sans-v24-latin-600.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/work-sans-v24-latin-600.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/work-sans-v24-latin-600.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/work-sans-v24-latin-600.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/work-sans-v24-latin-600.svg#WorkSans') format('svg');
    /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #DFCAB7;
    overflow: hidden;
}
p {
    padding-bottom: 0.5rem;
}
h1, h2, h3 {
    font-family: 'Work Sans', Arial, sans-serif;
    color: #9A9072;
    font-weight: 600;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    margin: 0;
    font-size: 2.4em;
    line-height: 1em;
}
h1 small {
    font-size: 0.6em;
}
h2 {
    font-size: 1.65em;
    line-height: 1.2em;
    margin-bottom: 1rem;
    color: #9A9072;
}
h2.custom {
    font-size: 1.75em;
    margin-bottom: 0.125rem;
}
h3 {
    font-size: 1.65em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
header figure {
    position: absolute;
    top: 2rem;
    right: 2rem;
}
main {
    position: absolute;
    top: 11rem;
    right: 3.5rem;
    width: 381px;
}
footer {
    display: flex;
    gap: 1rem;
}
footer p {
    font-size: 0.938rem;
    line-height: 1.25;
}
footer p {
    padding-bottom: 0.25rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    main {
        position: static;
        width: auto;
        padding: 2rem;
    }
    article br {
        display: none;
    }
}
@media only screen and (max-width:480px) {
    main {
        padding: 1rem;
    }
}