.oben {background-color: rgb(100, 255, 255);min-height:330px;max-height: 600px ;padding: 0;background-image: url("bilder/hintergundbanner.jpg");}

.flex{ justify-content:center; display: flex; margin: auto; align-items: center;}

.content {background-color: rgb(77, 255, 187) ;min-height:330px;max-height: auto ;padding: 0;color:darkred;font-size: 1em;margin-bottom: auto;padding: 1em 1em 2.5em 1em;}
body.content{background-color: rgb(77, 255, 187);}
body{background-color: rgb(77, 255, 187) ;  height: 100%;}
h1.content{color:darkred;font-size:4em;}

* {
    margin: 0;
    padding: 0;
    }
    
    html {
    height: 100%;
    }
    
    p, h1 {
    padding-bottom: 10px;
    }
    
    .wrapper {
    position: relative;
    min-height: 100%;
   
    }
    

    
    .footer {
    position: absolute;
    bottom: 0;
    color: gold;
    align-content: right;
    width: 100%;
    line-height: 1.5em;
    text-align: center;
    background: #8B8878;
    }














ul#horiznav, #horiznav ul{/*remove the bullets from the dropdown ul as well*/
    margin:0;
    padding:0;
    list-style-type:none;
    height:32px
    }
    
    #horiznav li{
    float:left;
    width:152px;
    position:relative/*set position:relative as the start point for absolutely positioning the dropdown*/
    }
    
    #horiznav li a{
    display:block;
    width:150px;
    line-height:30px;
    text-align:center;
    color:darkred;
    text-decoration:none;
    background-color: rgb(77, 255, 187);
    border:1px solid white;
    z-index: +1;
    }
    
    #horiznav li a:hover{
    color:rgb(250, 84, 84);
    background-color: darkgreen;
    
  }
    
    #horiznav li ul{
    display:none;/*hide the dropdown*/
    position:absolute;/*position it absolutely..*/
    left:0;/*...align the left edge with the left edge of the parent li...*/
    top:32px/*...and 32px down from the top - 30px height + 2px for the border*/
    }
    
    #horiznav li:hover ul {
    display:block/*display the ul when the parent li is hovered*/
    }
    
    #horiznav li ul a{
    background-color:  rgb(77, 255, 187); /*give the dropdown a different background colour*/
    }
      
    
  
  
  .animate{
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;  
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden; /* Chrome and Safari */
    -moz-backface-visibility:hidden; /* Firefox */
    -ms-backface-visibility:hidden; /* Internet Explorer */
  }