@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.eot');
    src: url('../fonts/open-sans-v40-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-regular.woff') format('woff'), url('../fonts/open-sans-v40-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-regular.svg#OpenSans') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v40-latin-700.eot');
    src: url('../fonts/open-sans-v40-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-700.woff') format('woff'), url('../fonts/open-sans-v40-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-700.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

.icon {
    display: inline-block;
}

article p {
    padding-bottom: 1rem;
}

span,
a.link {
    color: #B41D85;
    font-weight: 700;
}

h1 {
    font-size: 2rem;
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    color: #fff;
    font-weight: 400;
    text-shadow: 1px 1px 2px #000;
}

h1 small {
    font-size: 1.3rem;
}

h2 {
    font-size: 1.2rem;
    line-height: 1.3;
    color: #B41D85;
    position: absolute;
    top: 3rem;
    left: 2rem;
    transform: rotate(-10deg);
    background-color: #fff;
    border: 10px solid #B41D85;
    padding: .3rem;
    width: 11rem;
    border-radius: 5px;
}

ul {
    padding: 0 0 1rem 3rem;
}

header {
    position: relative;
}

article {
    padding: 1rem 2rem 0;
    border-bottom: 1px solid #000;
}

footer {
    padding: 1rem 2rem;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(238, 238, 238, 1) 100%);
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 40rem) {
    h1 {
        font-size: 1.7rem;
        line-height: 1.3;
        position: static;
        color: #000;
        text-shadow: none;
        text-align: center;
        padding: 1rem;
    }

    h1 br {
        display: none;
    }

    h2 {
        transform: rotate(0);
        width: 100%;
        border-radius: 0;
        position: static;
        text-align: center;
    }

    article {
        padding: 0 1rem;
    }

    footer {
        padding: 1rem;
    }
}