/* ALLGEMEIN */

* {
    margin: 0;
    padding: 0;
    
    font-family: Helvetica;
    
}

html, body {
    height: 100%;
}


/* WRAPPER / MAIN */

.alles {
    min-height: 100%;
    background-color: rgba(40,40,40,1);
    width: 100%;
    /*height: 100vh;*/
    z-index: 0;
    

}
.main {
    overflow: auto;             /*für Footer benötigt*/
    padding-bottom: 100px;
}


/* NAVIGATION */

#navigation {
    position: fixed;
    top: 1;
    
    z-index: 10;
    
    width: 100%;
    height: 100px;
    
    background-color: rgba(20,20,20,0.8);
}


#logo {
    
        width: 75px;
    height: 60px;

    float: left;
    
    margin: 20px;
background-color: rgba(255,255,255,0);
}

#logo p{

    
        color: rgba(230,230,230,1.0);
    font-weight: 700;
    background-color: rgba(255,255,255,0);
    }

#logo h1{

    
        color: rgba(230,0,0,1.0);
    font-weight: 700;
    font-size: 1em;
    background-color: rgba(255,255,255,0);
    }




#menu {
    float: right;
    margin-top: 40px;
    margin-right: 50px;
        background-color: rgba(255,255,255,0);
}

#menu a {
    padding-right: 0px;
    padding-bottom: 3px;
    
    text-decoration: none;
    color: rgba(230,230,230,1.0);
    font-weight: 700;
    
    background-color: rgba(255,255,255,0);
}

#sel {
    border-bottom: solid rgba(230,0,0,1.0) 3px;
    background-color: rgba(255,255,255,0);
    /*transition: background-color 0.3s;*/
}

#spacer {
    padding-right: 35px;
    padding-bottom: 5px;
    /*
    text-decoration: none;
    font-weight: 700;
    */
        background-color: rgba(255,255,255,0);
}

#menu a:hover {
    border-bottom: solid rgba(230,0,0,1.0) 3px;
    background-color: rgba(255,255,255,0);
    /*transition: border-bottom-color 0.3s;*/
}


/* BANNER */

.banner_site {
    /*position: absolute;*/
    width: 100%;
    height: 200px;
    
    
    text-align: left;
    
    background: url(001_4k.jpg);
    background-size: cover;

}

.banner_site .title h1 {
    padding-top: 125px;
    padding-left: 70px;
    text-align: left;
    font-size: 2.5em;
    color: rgba(230,230,230,1.0);
    background-color: rgba(255,255,255,0);
    text-shadow: 3px 3px 5px rgb(30,30,30);
}


/* CONTENT */

.content_site .text {
    margin-top: 30px;
    margin-left: 70px;
    margin-right: 70px;
}

.content_site .text h1 {
    padding-top: 35px;
    padding-left: 0px;
    text-align: left;
    font-size: 0.9em;
    color: rgba(230,230,230,1.0);
}

.content_site .text p {
    padding-top: 20px;
    padding-left: 0px;
    text-align: left;
    font-size: 0.9em;
    color: rgba(230,230,230,1.0);
}

/* FOOTER */

.footer {
    color: rgba(230,230,230,1.0);
    height: 100px;
    position: relative;
    
    margin-top: -100px;
    clear: both;
    background-color: rgba(20,20,20,0.8);
}

.footer .footer-content {
    /*border: 1px solid red;*/
    height: 50px;
    padding-top: 20px;
    
    text-align: center;
}

.footer .footer-content a {
    text-decoration: none;
    color: rgba(230,230,230,1.0);
}
.footer .footer-content a:hover {
    /*text-decoration: none;*/
    color: rgba(230,0,0,1.0);
    transition: color 0.5s;
}


.footer .footer-bottom {
    background-color: rgb(40,40,40);
    height: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.7em;
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding-top: 10px;
    
    color: rgba(180,180,180,1.0);
}



