@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,700');

body {
    font-family: 'Roboto Condensed', sans-serif;
    color:#333;
    font-weight:300;
    padding-top:3em;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eeeeee+0,ffffff+100 */
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(238,238,238,1) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
    background-repeat:no-repeat;
}


.flyin {
    animation-name: flyin;               
    animation-duration: 3s;              
    animation-iteration-count: 1;  
    -webkit-animation-iteration-count: 1;  

}

@keyframes flyin {
    from {  transform: translateY(-220px);
            opacity: 0;
    }
    to   {  transform: translateY(0px);
    }
}

.content {
    padding:2em;
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#bd1d1d+0,8f0222+100,bc4949+100 */
    background: rgb(189,29,29); /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover, rgba(189,29,29,1) 0%, rgba(143,2,34,1) 100%, rgba(188,73,73,1) 100%); /* FF3.6-15 */
    background: -webkit-radial-gradient(center, ellipse cover, rgba(189,29,29,1) 0%,rgba(143,2,34,1) 100%,rgba(188,73,73,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: radial-gradient(ellipse at center, rgba(189,29,29,1) 0%,rgba(143,2,34,1) 100%,rgba(188,73,73,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bd1d1d', endColorstr='#bc4949',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
    
    position:absolute;
    width:60%;
    left:20%;
    top:220px;
    
    border-top:none;
    border-bottom:none;
}

.title {
    margin-top:1em;
    margin-bottom:1em;
    color:#fff !important;
    font-weight:700;
    text-shadow: 1px 1px 1px #000;
}

.center {
    text-align: center;
}

.imprint {
    margin-top:40px;
    padding-top:40px;
    width:55%;
    min-width:320px;
    background:#fff;
    z-index:-100;
    position: relative;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    padding-bottom:2em;
    
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 25%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(255,255,255,1) 25%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(238,238,238,1) 0%,rgba(255,255,255,1) 25%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
    background-repeat:no-repeat;
}


.imprint img.logo {
    margin-bottom:240px;
}

.symbol {
    padding-left:0.5em;
    padding-right:0.5em;
    color:#bbb;
}

h1, h2, h3, h4, h5, h6 {
    font-weight:700;
}

h3 {
    font-size:1.2em;
}

@media (max-width: 768px) {
    .content {
        width:100%;
        left:0;
    }   
}