﻿@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875em;
    line-height: 1.431em;
    background-image: url(../images/bg.png);
    background-repeat: repeat-x;
    background-position: bottom;
    background-color: #E97315;
}

#wrapper1 {
    position: relative;
    max-width: 100%;
    margin: 0rem auto;
    border: none;
    padding: 0.5rem 0rem;
    overflow: hidden;
    background-color: #FFF;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: none;
    padding: 0.5rem 0rem;
    overflow: hidden;
    background-color: #FFF;
}

header {
    margin-top: -0.5rem;
    padding: 0.5rem 1.188rem;
    background-color: #FDD311;
}

article,
footer {
    padding: 0rem 2rem;
}

p {
    text-align: left;
}

h2 + p,
h2 + ul {
    margin-top: 0.308rem;
}

h1 {
    font-family: 'Gloria Hallelujah', cursive;
    font-size: 3.292em;
    line-height: 1.1em;
    color: #203CAD;
}

h1 span {
    font-size: 0.731em;
}

h2 {
    font-family: 'Gloria Hallelujah', cursive;
    font-size: 1.531em;
    line-height: 1.431em;
    margin-bottom: 0;
    color: #2FAD56;
}

h3 {
    font-family: 'Gloria Hallelujah', cursive;
    font-size: 1.431em;
    line-height: 1.431em;
    margin-bottom: 0;
}

a:link,
a:active,
a:visited {
    color: #960236;
    text-decoration: none;
}

a:hover {
    color: #960236;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

hr {
    border-top: thin solid #52BA5A;
}

ul {
    padding-left: 1rem;
    margin-left: 1rem;
}

li {
    padding-bottom: 0.2rem;
    list-style-type: none;
    list-style-image: url();
}

li:before {
    content: "\25A0";
    color: #960236;
    float: left;
    margin-left: -20px;
}

/* Hebt Float left/right auf */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

header img {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media only screen and (max-width:40rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    header,
    article,
    footer {
        padding: 0rem 0.5rem;
    }

    h1 {
        font-size: 1.992em;
        line-height: 1.1em;
        color: #203CAD;
    }

    h2 {
        font-size: 1.231em;
        line-height: 1.231em;
        margin-bottom: 0;
    }

    h3 {
        font-size: 1.131em;
        line-height: 1.231em;
        margin-bottom: 0;
    }

}

/* Ende Responsive */
