@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-v32-latin-regular.eot');
    src: url('../fonts/nunito-v32-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-regular.woff2') format('woff2'), url('../fonts/nunito-v32-latin-regular.woff') format('woff'), url('../fonts/nunito-v32-latin-regular.ttf') format('truetype'), url('../fonts/nunito-v32-latin-regular.svg#Nunito') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/nunito-v32-latin-700.eot');
    src: url('../fonts/nunito-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-700.woff2') format('woff2'), url('../fonts/nunito-v32-latin-700.woff') format('woff'), url('../fonts/nunito-v32-latin-700.ttf') format('truetype'), url('../fonts/nunito-v32-latin-700.svg#Nunito') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/nunito-v32-latin-900.eot');
    src: url('../fonts/nunito-v32-latin-900.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-900.woff2') format('woff2'), url('../fonts/nunito-v32-latin-900.woff') format('woff'), url('../fonts/nunito-v32-latin-900.ttf') format('truetype'), url('../fonts/nunito-v32-latin-900.svg#Nunito') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em 'Nunito', Arial, sans-serif;
}
h2, h3 {
    font-weight: 900;
}
strong {
    font-weight: 700;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #231F20 url('../images/bg.jpg') bottom left no-repeat;
    overflow: hidden;
    padding: 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1em;
    line-height: 1.3;
    font-weight: 400;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3em;
}
h3 {
    font-size: 3em;
    line-height: 1;
    position: absolute;
    top: 2.5rem;
    left: 3rem;
}
h3 span {
    color: #FBAC18;
    display: block;
    font-size: 1.5em;
    line-height: 0.9;
}
article {
    position: absolute;
    top: 10rem;
    left: 3rem;
}
figure {
    display: flex;
    gap: 1.5rem;
    margin: 0 0 1rem 9.5rem;
}

figcaption {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.25em;
}
footer {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3rem;
}
@media only screen and (max-width:699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
    }
    h3 {
        position: static;
        padding: 1rem;
    }
    article {
        position: static;
        padding: 0 1rem;
    }
    figure {
        justify-content: center;
        margin: 0 0 2rem;
    }
}