*{
    margin: 0; 
    padding: 0; 
    font-family: 'Mina', sans-serif;
}

body{
    background-color: white;
}

/*********Header********/
header{
    position: fixed;
    width: 100%;
    height: 180px;
    background-color: white;
    z-index: 3;
    transition: 200ms all;
}

a{
    text-decoration: none;
    color: black;
}

h1{
    padding-top: 55px;
    text-align: center;
    font-size: 50px;
    font-family: Schrift1;
    text-shadow: 1px 1px 2px rgba(150, 150, 150, 1);
    border-bottom: solid #e6e6e6 1px;
    -webkit-user-select: none;     
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
}

h1:hover{
    cursor: pointer;
}

#menu{
    margin: 0 auto;
    width: 340px;
    height: 50px;
}

#menu a{
    font-size: 20px;
    margin: 15px;
    margin-bottom: 0;
    -webkit-user-select: none;     
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
}

#menu a:first-child{
    float: left;
}

#menu a:last-child{
    float: right;
}

#menu a:hover{
    border-bottom: black solid 2px;
    cursor: pointer;
}

/***********************/

/******Bannerbild******/
#hintergrund{
    width: 100%;
    height: auto; 
    position: relative;
}

img{
    margin: 0;
    padding: 0;
    width: 100%;
    margin-top: 180px;
}

/**********************/

/********Texte*********/
#text{
    width: 80%;
    height: 500px;
    margin: 0 auto;
    margin-top: 200px;
    margin-bottom: 200px;
    display: flex;
}

 .textBoxen{
    width: 45%;
    height: auto;
}

.textBoxen:first-child{
    text-align: justify;
}

.textBoxen p{  
    font-size: 30px;
    float: left;
}

#trennLinie{
    width: 3px;
    height: 100%;
    margin: 0 auto;
    background-color: #e6e6e6;
}

/**********************/

/********footer********/
#bottom{
    position:relative;
    bottom: 0;
    width: 100%;

}

/**********************/


/*********JavaScript**********/
.JS{
    height: 130px;
    overflow: hidden;
}
/*****************************/

/*********Bilder**********/

.bilderBox{
    position: relative;
    top: 200px;
    bottom: 100px;
    width: 100%;
    display: flex;
    margin: 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
}

.bilderBox img{
    width: 330px;
    margin-top: 10px;
    transition: 100ms all;
}

.bilderBox img:hover{
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75)
}

/*Korrekturen für Bilder*/
#bilderBoxAq1zu2 img{
    width: 500px;
}
/************************/

#bilderBoxOl3zu4 img{
    width: 400px;
}

.seitenNavigation{
    width: 250px;
    height: 50px;
    border-radius: 5px ;
    background-color:skyblue;
    margin: 0 auto;
    position: relative;
    bottom: -250px;z-index: 5521;
    display: flex;
    justify-content: space-around;
}

.seitenNavigation a{
    height: 100%;
    line-height: 50px;
    font-size: 16px;
    color: white;
    -webkit-user-select: none;     
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
    transition: 200ms all;
}

/*Seite1*/
#AqSeite1{
    color: darkgray;
}

.seitenNavigation div{
    height: 40px;
    margin-top: 5px;
    width: 1px;
    background-color: white;
}

.seitenNavigation a:hover{
    color:darkblue;
}

/*************************/

/***************responsive*****************/
@media screen and (max-width: 1200px){
    #text{
        display: block;
        width: 90%;
    }
    .textBoxen{
        width: 100%;
    }
    #trennLinie{
        display: none;
    }
}

@media screen and (max-width: 800px){
    #text{
        margin-top: 100px;
    }
     .textBoxen p{
        font-size: 25px;
    }
}

@media screen and (max-width: 400px){
    #text{
        margin-top: 50px;
    }
    #menu{
        width: 200px;
        height: 40px;
    }
    #menu a{
        font-size: 15px;
        margin: 5px;
        margin-top: 12px;
    }
     .textBoxen p{
        font-size: 15px;
    }
}

/******************************************/

@font-face { font-family: 'Schrift1';
             src: url('Kaushan_Script/KaushanScript-Regular.ttf') format('truetype'); 
}
@font-face { font-family: 'Schrift2';
             src: url('Mina/Mina-Regular.ttf') format('truetype'); 
}



