@charset "utf-8";
@font-face {
  font-display: swap;
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/barlow-v12-latin-regular.eot');
  src: url('../fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/barlow-v12-latin-regular.woff2') format('woff2'), url('../fonts/barlow-v12-latin-regular.woff') format('woff'), url('../fonts/barlow-v12-latin-regular.ttf') format('truetype'), url('../fonts/barlow-v12-latin-regular.svg#Barlow') format('svg');
}
@font-face {
  font-display: swap;
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/barlow-v12-latin-700.eot');
  src: url('../fonts/barlow-v12-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/barlow-v12-latin-700.woff2') format('woff2'), url('../fonts/barlow-v12-latin-700.woff') format('woff'), url('../fonts/barlow-v12-latin-700.ttf') format('truetype'), url('../fonts/barlow-v12-latin-700.svg#Barlow') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1.25em/1.3em 'Barlow', Arial, sans-serif;
    text-align: center;
}
h1, h2, h3 {
    font-weight: 700;
}
#wrapper {
    position: relative;
    max-width: 610px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #3B8737 url('../images/bg.jpg') top left no-repeat;
    overflow: hidden;
    padding: 3.5rem 1rem 0;
}
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 auto 0.5rem 0.5rem;
    font-size: 1.875em;
    line-height: 1.1em;
    width: fit-content;
    text-align: left;
    text-shadow: 0 0 6px #464646;
}
h1 span {
    display: block;
    font-size: 0.85em;
    margin-top: 1rem;
}
h2 {
    font-size: 2.25em;
    line-height: 1.3em;
    margin: 0 16rem 4rem 0;
}
h3 {
    font-size: 2em;
    line-height: 1.3em;
    color: #F6EC7E;
    width: fit-content;
    margin: -1rem 4rem -0.5rem auto;
}
h3 span {
    display: block;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.3;
}
header {
    opacity: 0;
    position: absolute;
    top: 0.75rem;
    right: 0.5rem;
    z-index: 2;
}
article {
    transform: rotate(-7deg);
}
footer {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-right: 1rem;
}
figure {
    display: none;
}
footer p {
    font: 1.125em/1 Calibri, Arial, sans-serif;
    padding-bottom: 0.75rem;
}
@media only screen and (max-width:609px) {
    body {
        font-size: 1em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
        padding: 1rem;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1, h2, h3 {
        width: auto;
        margin: 0 0 1rem;
        text-align: center;
    }
    header {
        position: static;
        display: flex;
        justify-content: center;
        opacity: 1;
    }
    article {
        transform: none;
    }
    figure {
        display: block;
    }
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 0;
    }
    footer p {
        line-height: 1.3;
    }
}