*
{
    background-color: #999999;
    margin: 0;
}
body
{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
div
{
    height: 15px;
    width: 100%;
    background-color: #333;
}
form.login
{
    float: right;
}
input
{
    margin-left: 10px;
    width: 150px;
    height: 20px;
    border: 1px solid #333;
    border-radius: 5px;
}
header
{
    
    padding: 40px 20px;
    max-width: 100%;
    max-height: 130px;
}
header h1
{
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    font-weight: bolder;
    text-shadow: 2px 2px #666;
}
nav
{
    background-color: #333;
}
nav ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}
nav ul li
{
    display: inline-block;
    margin-right: 10px;
    background-color: #333;
}
nav ul li a
{
    display: block;
    background-color: #333;
    color: #CCCCCC;
    text-align: center;
    padding: 12px 14px;
    text-decoration: none;
}
nav ul li a:hover 
{
    background-color: #CCCCCC;
    color: #333;
}
main
{
    display: flex;
    justify-content: space-between;
}
section
{
    flex: 1;
    margin: 5px 0 0 5px;
    padding: 10px 10px;
    border-radius: 10px;
    min-width: 400px;
}
article
{
    margin: 20px 0 0 0;
    text-align: justify;
}
article h1.stand
{
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #000;
    text-shadow: 2px 2px #777;
}
article h1.eilm
{
    margin: 0 0 10px 0;
    font-size: 28px;
    color: red;
    text-shadow: 2px 2px black;
    text-align: center;
}
aside
{
    margin: 5px 5px 0 5px;
    padding: 10px 10px;
    border-radius: 10px;
    flex: 0 0 20%;
    min-width: 400px;
    max-width: 400px;
    height: 800px;
    max-height: 100%;
}
@media (max-width: 768px)
{
    form.login 
    {
        float: left;
        margin-top: 10px;
    }
    nav ul 
    {
        flex-direction: column;
        text-align: center;
    }
    nav li 
    {
        display: block;
        margin: 5px 0;
    }
    section, aside
    {
        flex-basis: 100%;
    }
    aside 
    {
        order: 2;
    }
    main 
    {
        flex-direction: column;
    }
    h1 
    {
        text-align: center;
    }
}
.head
{
    padding: 40px 20px;
    font-size: 36px;
    font-family: Arial, Helvetica, sans-serif;
    color: aliceblue;
}
footer
{
    margin-top: 5px;
    background-color: #333;
    max-width: 100%;
    padding: 10px 10px;
    color: #CCCCCC;
    text-align: center;
}
img.img-cent
{
    max-width: 450px;
    text-align: center;
    align-items: center;
}
img.img-left
{
    margin: 0 20px 8px 0;
    max-width: 450px;
    float: left;
}
img.img-right
{
    margin: 0 0 8px 20px;
    max-width: 450px;
    float: right;
}



/* Animation Eilmeldung */
.cssanimation, .cssanimation span {
    animation-duration: 1s;
    animation-fill-mode: both;
    text-align: center;
    font-size: 28px;
    color: red;
    text-shadow: 2px 2px #333;
}

.cssanimation span { display: inline-block }

.pepe { animation-name: pepe; animation-iteration-count:infinite; animation: rotation 26s; }
@keyframes pepe {
    from, 33%, 66%, to { transform: rotate(4deg) }
    16%, 50%, 83% { transform: rotate(-4deg) }
}