﻿@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.75em;
    line-height: 1.4;
}

#wrapper {
    background-color: #fff;
    margin: 1rem auto;
    border: thin solid #d4465f;
    max-width: 50.625rem;
    overflow: hidden;
    position: relative;
    background: #d7005d;
    /* Old browsers */
    background: linear-gradient(to bottom, #d7005d 0%, #d7035a 18%, #d80e53 34%, #db1d4b 45%, #dc2248 53%, #e13744 64%, #e7523f 75%, #f17d37 90%, #faa030 100%);
}

p + p {
    margin: 1rem 0 0 0;
}

h1 {
    margin: 1rem 0;
    font-size: 2rem;
    line-height: 1.2;
    font-family: 'Barlow Semi Condensed', Helvetica, sans-serif;
    color: #d4465f;
    font-weight: 600;
}

h1 span {
    font-size: 1.5rem;
    font-weight: normal;
}

h2 {
    font-size: 1.125rem;
    line-height: 1.2;
    margin: 0 0 0.3rem;
    font-family: 'Barlow Semi Condensed', Helvetica, sans-serif;
    color: #fff;
    font-weight: 600;
}

footer h3 {
    background-color: #d4465f;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.2rem;
    display: flex;
    justify-content: center;
    margin-left: 12rem;
    margin-right: 12rem;
}

footer h3 a:link,
footer h3 a:active,
footer h3 a:visited {
    color: #fff;
    text-decoration: none;
}

footer h3 a:hover {
    color: #000;
    text-decoration: none;
}

article a:link,
article a:active,
article a:visited {
    color: #d4465f;
    text-decoration: none;
}

article a:hover {
    color: #d4465f;
    text-decoration: underline;
}

h4 {
    font-size: 0.938rem;
    margin: 0.6rem 0 1.5rem;
    text-transform: uppercase;
}

h5 {
    font-weight: normal;
}

h3 a:link,
a:active,
a:visited {}

h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
    border: none;
}

hr {
    border: none;
    border-top: thin dotted #28292b;
}

ul {
    padding-left: 1rem;
}

li {
    list-style-type: none;
    list-style-image: url();
    padding-bottom: 0.2rem;
}

li:before {
    color: #fff;
    content: "\25A0";
    float: left;
    margin-left: -0.938rem;
}

h6 {
    background: #fff;
    padding: 1.4rem 1.5rem;
}

aside {
    margin: 0 3.75rem;
}

aside article {
    background-color: #fff;
    color: #000;
    padding: 2.5rem 2.5rem 0.5rem;
}

aside article section:first-of-type {

    background-color: #3d3d3f;

}

nav:first-of-type {
    display: flex;
    justify-content: space-between;
}

nav:first-of-type section:first-of-type {
    margin: 1rem 0;
    background-color: #d4465f;
    color: #fff;
    padding: 0.75rem;
    width: 49%;
}

nav:first-of-type section:last-of-type {
    margin: 1rem 0;
    background-color: #3d3d3f;
    color: #fff;
    padding: 0.75rem;
    width: 49%;
}


nav:last-of-type section:first-of-type {
    margin: 0 0 1rem;
    background-color: #d4465f;
    color: #fff;
    padding: 0.75rem;
    width: 100%;
    position: relative;
}

article section img {
    position: absolute;
    right: 1rem;
    top: 1rem;
}

footer {
    text-align: center;
    margin: 1rem 0 1rem;
}

footer img:first-of-type {
    margin: .125rem auto .5rem;
    padding: .75rem 0;
    max-width: 9.375rem;
}

footer img:last-of-type {
    margin: 0 auto;
    padding: 0 0 0.75rem;
}

footer a:link,
footer a:active,
footer a:visited {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #d4465f;
    text-decoration: underline;
}


.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

/* Responsive */
@media only screen and (max-width:50rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    h6 {
        background: #fff;
        padding: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h1 span {
        font-size: 1.25rem;
    }

    aside section img {
        display: none;
    }

    aside article {
        padding: 1rem;
    }

    aside {
        margin: 0 1rem;
    }

    a:link,
    a:active,
    a:visited {
        font-size: 1rem;
    }

    a:hover {
        text-decoration: none;
    }

    nav:first-of-type {
        flex-direction: column;
        margin-top: 1rem;

    }

    nav:first-of-type section:first-of-type {
        margin: 0 0 1rem;

        width: 100%;
    }

    nav:first-of-type section:last-of-type {
        margin: 0 0 1rem;

        width: 100%;
    }


    nav:last-of-type section:first-of-type {
        margin: 0 0 1rem;
        background-color: #d4465f;
        color: #fff;
        padding: 0.75rem;
        width: 100%;
        position: relative;
    }
}

@media only screen and (max-width:29.938rem) {
    footer h3 {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Ende Responsive */
