@charset "utf-8";
/* yanone-kaffeesatz-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: 'Yanone Kaffeesatz';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/yanone-kaffeesatz-v32-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/yanone-kaffeesatz-v32-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/yanone-kaffeesatz-v32-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/yanone-kaffeesatz-v32-latin-regular.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/yanone-kaffeesatz-v32-latin-regular.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/yanone-kaffeesatz-v32-latin-regular.svg#YanoneKaffeesatz') format('svg');
    /* Legacy iOS */
}
@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
    src: local(''),
        url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'),
        url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v25-latin-700.eot');
    src: local(''),
        url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'),
        url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.15em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 600px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
h1, h3, h4 {
    font-weight: 700;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.3em;
    line-height: 1.2;
}
h2, h3 span {
    text-transform: uppercase;
}
h2, h3 {
    color: #F7EE37;
}
h3 span {
    color: #EE1D23;
}
h2 {
    font: 400 2.1em/1.3em 'Yanone Kaffeesatz', Arial, sans-serif;
}
h3 {
    font-size: 2.5em;
    line-height: 1em;
    margin-bottom: 0.5rem;
}
h4 {
    font-size: 1.5em;
    line-height: 1.3em;
    color: #FFF;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #EE1D23;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
main {
    background: #79CDD0;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem -2rem;
    gap: 1rem 4rem;
}
footer {
    padding: 0 1rem;
}
@media only screen and (max-width: 599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    main{
        position: static;
        width: 100%;
    }
    .flex{
        margin: 1rem 0;
        gap: 1rem;
    }
    footer{
        padding: 0;
    }
    br{
        display: none;
    }
}