@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v24-latin-700.eot');
    src: url('../fonts/poppins-v24-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v24-latin-700.woff2') format('woff2'), url('../fonts/poppins-v24-latin-700.woff') format('woff'), url('../fonts/poppins-v24-latin-700.ttf') format('truetype'), url('../fonts/poppins-v24-latin-700.svg#Poppins') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Schoolbell';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/schoolbell-v18-latin-regular.eot');
    src: url('../fonts/schoolbell-v18-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/schoolbell-v18-latin-regular.woff2') format('woff2'), url('../fonts/schoolbell-v18-latin-regular.woff') format('woff'), url('../fonts/schoolbell-v18-latin-regular.ttf') format('truetype'), url('../fonts/schoolbell-v18-latin-regular.svg#Schoolbell') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #1D4145;
    font: 700 1em/1.3em 'Poppins', Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 600px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: linear-gradient(to bottom , #1D4145 30%, #FED050 30%, #FED050 30%);
    overflow: hidden;
    padding: 0 1.5rem;
}
#wrapper:after {
    content: "";
    width: 100%;
    height: 33%;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #1D4145;
}
p {
    padding-bottom: 0.5rem;
}
: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 0 0.5rem;
    font-size: 1em;
    line-height: 1.3;
}
h1:before {
    content: url('../images/icon.jpg');
    margin-right: 0.375rem;
    vertical-align: -3px;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3em;
    text-transform: uppercase;
}
h3 {
    font: 400 1.5em/1.3 'Schoolbell', cursive;
    -webkit-text-stroke: 1px;
    color: #FFD152;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}
h3 + p {
    padding: 0;
}
main {
    padding: 0.5rem 1rem;
    background: #fff;
    z-index: 222;
    position: relative;
}
hr {
    width: 160px;
    border: 2px solid #1D4145;
    margin: 0 auto 0.75rem;
}
.ups {
    text-transform: uppercase;
}
footer {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
.flex {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}
figure {
    display: flex;
    flex-wrap: wrap;
    padding-left: 1.75rem;
    margin-left: 1.75rem;
    border-left: 2px solid #FFD152;
    justify-content: center;
    width: min-content;
    gap: 0.5rem;
}
figcaption {
    font-size: 0.75em;
    line-height: 1.3;
    width: 100%;
}
@media only screen and (max-width:599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
        background-image: none;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:375px) {
    .flex {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    figure {
        padding: 0;
        border: 0;
        margin: 0;
    }
}