@charset "utf-8";
/* cookie-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Cookie';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/cookie-v23-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/cookie-v23-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/cookie-v23-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/cookie-v23-latin-regular.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/cookie-v23-latin-regular.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/cookie-v23-latin-regular.svg#Cookie') format('svg');
    /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #FFF;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #1D4672;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    font-size: 1.692em;
    line-height: 1.1;
    text-align: center;
    padding: 2rem 1rem 0;
    color: #1E4671;
}
h1 span {
    font-size: 1.7em;
}
h1 span, h3 {
    font-family: 'Cookie', cursive;
    font-weight: 400;
    color: #ED7C1F;
}
h3 {
    font-size: 2.8em;
    line-height: 1;
    transform: rotate(-5deg);
    margin: 1rem 0;
}
h3 span {
    margin-left: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
header {
    background: url('../images/bg.jpg') repeat-y;
}
header img {
    display: block;
}
article {
    padding: 1rem 2rem 2rem;
    display: flex;
    justify-content: start;
    gap: 0 2rem;
    position: relative;
    z-index: 999;
    margin-top: -5rem;
}
article p, h2 {
    font-size: 1.3em;
    line-height: 1.3em;
}
footer {
    position: absolute;
    bottom: 2rem;
    right: 2.4rem;
}
@media only screen and (max-width: 800px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1 {
        padding-bottom: 1rem;
    }
    article {
        flex-direction: column;
        margin-top: -2rem;
        padding: 1rem;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
        padding: 0 1rem;
    }
    h3 {
        transform: rotate(0);
    }
    figure {
        display: flex;
        justify-content: center;
        margin: 1rem 0;
    }
    article p, h2, h3 {
        text-align: center;
    }
    .hide_m {
        display: none;
    }
    h3 span {
        margin: 0;
    }
}