@charset "utf-8";
@font-face {
    font-display: swap;   /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v24-latin-regular.eot');   /* IE9 Compat Modes */
    src: url('../fonts/poppins-v24-latin-regular.eot?#iefix') format('embedded-opentype'),      /* IE6-IE8 */
    url('../fonts/poppins-v24-latin-regular.woff2') format('woff2'),      /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('../fonts/poppins-v24-latin-regular.woff') format('woff'),      /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
    url('../fonts/poppins-v24-latin-regular.ttf') format('truetype'),      /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
    url('../fonts/poppins-v24-latin-regular.svg#Poppins') format('svg');   /* Legacy iOS */
}

@font-face {
    font-display: swap;   /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v24-latin-600.eot');   /* IE9 Compat Modes */
    src: url('../fonts/poppins-v24-latin-600.eot?#iefix') format('embedded-opentype'),      /* IE6-IE8 */
    url('../fonts/poppins-v24-latin-600.woff2') format('woff2'),      /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('../fonts/poppins-v24-latin-600.woff') format('woff'),      /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
    url('../fonts/poppins-v24-latin-600.ttf') format('truetype'),      /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
    url('../fonts/poppins-v24-latin-600.svg#Poppins') format('svg');   /* Legacy iOS */
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 600 0.938em/1.3em 'Poppins', Calibri, sans-serif;
    color: #fff;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 930px;
    border: solid 1px #000;
    background: #fff;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.188em;
    line-height: 1.1em;
    background: #ED1255;
    padding: 0.5rem;
    width: fit-content;
}

h1 small {
    font-size: 0.7em;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

header img {
    display: block;
}

article {
    position: absolute;
    left: 10.5%;
    bottom: 13%;
}

article p {
    background: #0794B2;
    width: fit-content;
    padding: 0.3rem;
    margin: 1rem 0 1.5rem;
}

.small {
    font-size: 0.813em;
    line-height: 1.3;
    margin: 0;
}

footer p {
    border-left: 1px solid #fff;
    padding: 0.5rem 0 0.5rem 0.5rem;
    position: absolute;
    right: 1rem;
    bottom: 2rem;
    font-size: 0.750em;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:928px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #228CC7;
    }
    article br{
        display: none;
    }

    article {
        position: static;
        padding: 1rem;
    }

    footer {
        padding: 0 1rem 1rem;
    }

    footer p {
        position: static;
    }
    h1{
        line-height: 1.3;
    }

    p :is(span, a) {
        display: inline-block;
    }

}
