﻿body
{
    margin: 0;
    font-family: 'Trebuchet MS';
    background-color: #eeeeee;
}

section
{
    width: 60%;
    margin: auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 50px #888888;
    padding: 0.5em;
    margin-top: 4em;
}

article h2
{
    color: #0b6bd7;
}

article h1
{
    color: #0b6bd7;
}

article p
{
    color: #373636;
}

footer 
{
    height: auto;
    min-width: 15em;
    width: 35%;
    margin-top: 2em;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1em;
    padding-bottom: 0.25em;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px #808080;
}

footer #copy
{
    font-size: 1.5em;
    margin: 0;
    padding: 0.5em 1em 0 1em;
    text-align: center;
    color: #0b6bd7;
}

footer #YT
{
    height: 50px;
}

footer #impressum
{
    color: #888888;
    font-size: 0.8em;
}

/*media query*/
@media screen and (max-device-width: 880px) 
{
    section
    {
        width: 75%;
    }

    article h2
    {
        font-size: 2em;
    }

    article h1
    {
        font-size: 1.7em;
    }

    article p
    {
        font-size: 1.4em;
    }
}

@media screen and (max-width: 880px) 
{
    section
    {
        width: 75%;
    }

    article h2
    {
        font-size: 2em;
    }

    article h1
    {
        font-size: 1.7em;
    }

    article p
    {
        font-size: 1.4em;
    }
}