body {
    margin: 0;
    padding: 0;
    font-family: 'Lora', serif !important;
    font-size: 14px;
    line-height: 1.5em;
    height: 100%;
}

#logo-container {
    position: relative;
    height: 160px;
}

#logo {
    position: relative;
}

#logo img {
    position: absolute;
    width: 400px;
    top: -150px;
    left: 50%;
    margin-left: -200px;
    transition: all ease-in-out 1s;
}

#logo.animate img {
    position: absolute;
    top: 0;
    left: 50%;
    transition: all ease-in-out 1s;
    margin-left: -200px;
    animation: fadeInOpacity 1s;
    -webkit-animation: fadeInOpacity 1s;
}

#logo-container {
    margin-top: 20px;
}

#intro-headline {
    background-color: #000;
    padding: 30px;
    width: 100%;
    margin-top: 50px;
}

#intro-headline h1 {
    color: #fff;
    text-align: center;
    font-size: 3.5em;
}

#intro-subheadline {
    margin-top: 100px;
    text-align: center;
    position: fixed;
    width: 100%;
    line-height: 4em;
    margin-bottom: 120px;
    bottom: -200px;
    transition: all ease-in-out 1s;
}

#intro-subheadline.animate {
    bottom: 0;
    transition: all ease-in-out 1s;
    animation: fadeInOpacity 1s;
    -webkit-animation: fadeInOpacity 1s;
}

#intro-subheadline h2 {
    color: #000;
    text-align: center;
    font-size: 3em;
}

#intro-subheadline p {
    font-size: 1.5em;
}

#intro-subheadline a {
    color: #000;
    transition: all ease-in-out .3s;
}

#intro-subheadline a:hover {
    text-decoration: none;
    color: #999;
}

#hinweis {
    position: fixed;
    bottom: 0;
    padding: 10px 0;
    background-color: #333;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    border-top: 1px solid #999;
}

#hinweis button#hinweis-hidden {
    border: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    float: right;
}

#hinweis p {
    float: left;
    padding: 0;
    margin: 0;
}


/** Animation **/

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    25% {
        opacity: .25
    }
    75% {
        opacity: .75
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 425px) {
    #logo-container {
        height: 50px;
    }
    #logo img {
        width: 200px;
        margin-left: -100px;
    }
    #logo.animate img {
        margin-left: -100px;
    }
    #logo-container {
        margin-top: 20px;
    }
    #intro-headline {
        padding: 20px 0;
        margin-top: 20%;
    }
    #intro-headline h1 {
        font-size: 24px;
        line-height: 34px;
        margin: 0;
    }
    #intro-subheadline {
        line-height: 24px;
        margin-bottom: 50%;
    }
    #intro-subheadline h2 {
        font-size: 20px;
        margin: 
    }
    #intro-subheadline p {
        font-size: 12px;
    }
}