@charset "utf-8";
/* kode-mono-600 - 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: 'Kode Mono';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/kode-mono-v3-latin-600.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/kode-mono-v3-latin-600.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/kode-mono-v3-latin-600.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/kode-mono-v3-latin-600.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/kode-mono-v3-latin-600.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/kode-mono-v3-latin-600.svg#KodeMono') format('svg');
    /* Legacy iOS */
}
@font-face {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/fira-sans-v16-latin-regular.eot');
    src: local(''),
        url('../fonts/fira-sans-v16-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/fira-sans-v16-latin-regular.woff2') format('woff2'),
        url('../fonts/fira-sans-v16-latin-regular.woff') format('woff'),
        url('../fonts/fira-sans-v16-latin-regular.ttf') format('truetype'),
        url('../fonts/fira-sans-v16-latin-regular.svg#FiraSans') format('svg');
}
@font-face {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/fira-sans-v16-latin-700.eot');
    src: local(''),
        url('../fonts/fira-sans-v16-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/fira-sans-v16-latin-700.woff2') format('woff2'),
        url('../fonts/fira-sans-v16-latin-700.woff') format('woff'),
        url('../fonts/fira-sans-v16-latin-700.ttf') format('truetype'),
        url('../fonts/fira-sans-v16-latin-700.svg#FiraSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #0B2028;
    font: 400 1em/1.3em 'Fira Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 920px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') no-repeat top left;
    overflow: hidden;
    padding: 2rem 1rem 13rem;
}
hr {
    border: none;
    border-bottom: 3px dashed #E53448;
    width: 100%;
    margin-bottom: 0.5rem
}
h1, h2, strong {
    font-weight: 700;
}
h1, h2, h3 {
    font-weight: 600;
    font-family: 'Kode Mono', cursive;
}
p {
    padding-bottom: 1rem;
}
h1, p.big {
    color: #FFF;
}
p.big {
    font-size: 1.8em;
    line-height: 1.3em;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2.692em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h1+hr {
    border-bottom: 3px dashed #FFF;
}
h2, h3, p span,ul li:before {
    color: #E53448;
}
h2, h3 {
    font-size: 1.5em;
    line-height: 1.3;
}
h3, h1 span {
    color: #FFA29F;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #0B2028;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding: 0 0 0.5rem 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
header {
    position: absolute;
    bottom: 2rem;
    left: 3rem;
}
header figure {
    display: none;
}
article {
    display: flex;
    justify-content: space-between;
}
.left {
    width: 47%;
}
.right, footer {
    width: 48%;
    padding: 1rem;
}
footer {
    position: absolute;
    bottom: 1rem;
    right: 0rem;
}
@media only screen and (max-width: 919px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
        padding: 0;
    }
    h1{
        font-size: 1.7em;
    }
    p.big{
        font-size: 1.3em;
        padding: 0;
    }
    p :is(a, span) {
        display: inline-block;
    }
    header, footer {
        position: static;
    }
    header figure{
        display: block;
    }
    .logo {
        display: flex;
        justify-content: center;
        margin: 1rem 0;
    }
    article {
        flex-direction: column;
    }
    .left {
        background: #E53448;
        padding: 1rem;
    }
    .right {
        background: #FCF4E8;
    }
    article div, footer {
        width: 100% !important;
    }
    footer {}
}
@media only screen and (max-width: 480px){
    h2{
        font-size: 1.2em;
    }
}