/* ALLGEMEIN */

* {
    margin: 0;
    padding: 0;
    
    font-family: Helvetica;
    /*background-color: rgb(30,30,30);*/
}

html, body {
    height: 100%;
}


/* WRAPPER / MAIN */

.alles {
    min-height: 100%;
    
    width: 100%;
    /*height: 100vh;*/
    z-index: 0;
    
    background-color: rgba(40,40,40,1);
    background-image: url(001_4k.jpg),url(002.jpg),url(003.jpg),url(004.jpg);
    
    background-position: center;
    
    animation: animate 20s ease-in-out infinite;
    -moz-animation: animate 20s ease-in-out infinite;
    -webkit-animation: animate 40s ease-in-out infinite;
    animation-delay: 5s;
    
    background-size: cover;
/*
    transition: 5s;
    
    animation-name: animate;
    -webkit-animation-name: animate;
    animation-direction: alternate-reverse;
    animation-duration: 30s;
    -webkit-animation-duration: 30s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-play-state: running;
    animation-timing-function: ease-in-out;
*/
}

@keyframes animate {
   
    0%{background-image: url(001_4k.jpg);}
    25%{background-image: url(002.jpg);}
    50%{background-image: url(003.jpg);}
    75%{background-image: url(004.jpg);}
    100%{background-image: url(001_4k.jpg);}
}

@-moz-keyframes animate {
   
    0%{background-image: url(001_4k.jpg);}
    25%{background-image: url(002.jpg);}
    50%{background-image: url(003.jpg);}
    75%{background-image: url(004.jpg);}
    100%{background-image: url(001_4k.jpg);}
}

@-webkit-keyframes animate {
   
    0%{background-image: url(001_4k.jpg);}
    25%{background-image: url(002.jpg);}
    50%{background-image: url(003.jpg);}
    75%{background-image: url(004.jpg);}
    100%{background-image: url(001_4k.jpg);}
}

.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: background-color 0.3s;*/
}


/* BANNER */

.banner {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    text-align: center;

}

.banner .title p {
    padding-top: 0px;
        
    font-family: 'Passion One', cursive;
    font-size: 7em;
    color: rgba(230,0,0,0.6);
    background-color: rgba(255,255,255,0);
    
    
}

.banner .title h1 {
    padding-top: 20px;
        
    font-family: 'Condiment', cursive;
    font-family: 'Amatic SC', cursive;
    font-family: 'Alex Brush', cursive;

    font-size: 5em;
    color: rgba(200,200,200,1.0);
    background-color: rgba(255,255,255,0);
    
    text-shadow: 3px 3px 5px rgb(30,30,30);
}


/* CONTENT */

.banner .content {
    padding-top: 85px;
    margin-left: auto;
    margin-right: auto;
    
    
    
}

.banner .content a {
    position: relative;
    
    margin-left: 20px;
    margin-right: 20px;
    
    display: inline-block;
    width: 200px;
    
    padding: 8px 30px;
    color: rgba(200,200,200,1.0);
    background: rgba(200,200,200,0.2);
    box-shadow: 5px 5px 10px 0px rgba(20,20,20,0.8);
    
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border: 2px solid rgba(200,200,200,1.0);
    box-sizing: border-box;
    transition: color, border 0.5s ease-out;
}


    .banner .content a:hover {
        color: #fff;
        /*border: 2px solid rgba(230,0,0,1.0);*/
    }

    .banner .content a:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        background: rgba(230,0,0,0.4);
        z-index: -1;
        transform: scaleX(0);
        transition: transform 0.5s;
        transform-origin: left;

    }

    .banner .content a:hover:before {
        transform: scaleX(1);
        transition: transform 0.5s;
        transform-origin: right;

    }

    .banner .content a:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: rgba(230,0,0,0.4);
        z-index: -1;
        transform: scaleX(0);
        transition: transform 0.5s;
        transform-origin: right;

    }

    .banner .content a:hover:after {
        transform: scaleX(1);
        transition: transform 0.5s;
        transform-origin: left;

    }




/* 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);
}



