/*
    WS
*/
html, body {
    background: #2c3033;
    width: 100%;
    height: 100%;
    background-image: url(LayoutEntwurfWorkerStation.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: auto;
     animation-name: slidein;
    animation-delay: 0;
    animation-duration: 2s;
    animation-play-state: running;
    animation-iteration-count: 1;
}

.logo {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem;
    animation-name: fadein;
    animation-delay: 0;
    animation-duration: 1s;
    animation-play-state: running;
    animation-iteration-count: 1;
}
h1 {
    text-align: center;
    color: #fff;
    font-family: sans-serif;
    font-weight: 300;
    margin-top: 15%;
    padding: 1rem;
    
    animation-name: fadein;
    animation-delay: 0;
    animation-duration: 2s;
    animation-play-state: running;
    animation-iteration-count: 1;
}

a {
    color: #fff;
    margin-top: 250px;
    display: block;
    
    animation-name: fadein;
    animation-delay: 0;
    animation-duration: 2.5s;
    animation-play-state: running;
    animation-iteration-count: 1;
}

@keyframes fadein {
    from    { opacity: 0; }
    to      { opacity: 1; }
}

@keyframes slidein {
    from    {background-position: 0 2000px; }
    to      {background-position: bottom center; }
}