﻿@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/bg1.png);
    background-repeat: repeat-x;
    background-color: #F3F3F3;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: none;
    padding: 0.5rem 0rem;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 0 23px #A6A6A6;
}

header,
article,
footer {
    padding: 0rem 1.188rem;
}

p {
    text-align: justify;
}

h2 + p,
h2 + ul {
    margin-top: 0.308rem;
}

h1 {
    text-align: left;
    font-size: 2.192em;
    line-height: 1.2;
    margin-bottom: 0;
    background-image: url(../images/bg.png);
    background-repeat: repeat-y;
    background-position: right;
    padding-left: 1.188rem;
    padding-right: 1.188rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border: thin solid #F8C300;
}

h1 span {
    font-weight: normal;
    /*font-size:0.631em;*/
}

h2 {
    font-size: 1.231em;
    line-height: 1.331em;
    font-weight: normal;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border: thin solid #F8C300;

    background-image: url(../images/bg.png);
    background-repeat: repeat-y;
    background-position: right;
}

h3 {
    font-size: 1.231em;
    line-height: 1.231em;
}

a:link,
a:active,
a:visited {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

hr {
    border-top: thin solid #52BA5A;
}

ul {
    padding-left: 2.375rem;
}

ul + p {
    margin: 0 0 1.25rem 1.187rem;
}

ul li {
    padding-bottom: 0.2rem;
    list-style-type: none;
    list-style-image: url();
}

ul li:before {
    content: "\25A0";
    color: #F8C300;
    float: left;
    margin-left: -1.187rem;
    margin-top: -0.1rem;
}

ol {
    font-weight: bold;
    margin-left: -0.5rem;
}

ol li {
    padding-left: 0.5rem;
}

/* Hebt Float left/right auf */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

/* Ende Standard */


/* Header */
header section:nth-of-type(1) {
    display: inline-block;
    width: 20%;
    vertical-align: top;
    padding-top: 1rem;
}

header section:nth-of-type(2) {
    display: inline-block;
    width: 79%;
    vertical-align: top;
    padding-top: 3rem;
}

/* Ende Header */


/* Article */
article > p:last-of-type {
    text-align: center;
}

/* Ende Article */


/* Footer */
footer section {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border: thin solid #F8C300;
    background-image: url(../images/bg.png);
    background-repeat: repeat-y;
    background-position: right;
    margin-bottom: 1rem;
}


/* Responsive */
@media only screen and (max-width:40rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    header,
    article,
    footer {
        padding: 0rem 0.5rem;
    }

    p {
        text-align: left;
    }

    h1 {
        text-align: left;
        font-size: 1.892em;
    }

    a:link,
    a:active,
    a:visited {
        font-size: 1rem;
        font-weight: bold;
    }

}

/* Ende Responsive */