/* -----------------------------------------------------------------------------------


----------------------------------------------------------------------------------- */


/* ======= Google fonts (Oswald & Didact Gothic) ======= */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

/* ======= Basic style ======= */
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}


body {
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: #999;
    overflow-x: hidden !important;
    background: #4E6681; 
}


p {
font-size: large;
line-height: 1.5;
margin-bottom: 1em;
}

p i {
font-style: normal;
color: #BF7CB2;

}

.weiss {
color: #fff;
}

.einzitat {
background-color: #E2DED3;
padding: 5px;
margin-top: 2em;
margin-bottom: 2em;
border-bottom: solid 1px #1A3A54;
text-align: center;
}

a, a:active {
	color: #BF7CB2;
	font-weight: bold;
	text-decoration: none;
}

a:hover {
	color: #ffcc33;
	
}

/* Hauptseite - Header, Inhalt, Footer  */
.header { grid-area: header; }
.menu { grid-area: menu; }
.main { grid-area: main; }
.footer { grid-area: footer; }

.page-wrap {
	height: 100vh; /* <<<<<<<<<<<<<<<< anpassen... **************************** */
   display: grid;
   grid-template-columns: 10% 80% 10%;
   grid-template-rows: 80vh 30px 1fr 160px;
   
   
  grid-template-areas:
    'header'
    'menu'
    'mittelteil'
    'footer';
    
    grid-gap: 0;
}

/* **************** Ende Seitenstruktur ***************** */

#header {
	grid-column: 1 / 5;
	grid-row: 1 / 2;
	    background-color: #00ffaa;
	border: none 0px blue; 

}

#myheader {

position: absolute;
top: 0;
left:0;
width: 100%;
padding: 30px 100px;
display: flex;
justify-content: space-between;
z-index: 10;
align-items: flex-start;
}


#scene { position: relative;
width: 100%;
height: 90vh;
display: flex;
justify-content: center;
align-itms: center;
overflow: hidden;

}

#scene img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
pointer-events: none;


}


#menu {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	    background-color: #00ff00;
	    z-index: 99;
	    display: none; /* <<<<<<<< ausgeblendet ******************** */
}

#mittelteil {
	grid-column: 2 / 3;
	grid-row: 3 / 4;
	    background-color: #ECEAE4;
	    z-index: 88;

}


#aboutme {
margin: auto;

padding: 20px;
color: #777;
width: 70%;


}

h1 {
text-align: center;
padding-bottom: 20px;
padding-top: 20px;
}


.fliesstext{
padding: 40px;
 

}

#gotoSite {
border: none 0px red;
align-items: center;
text-align: center;
}

#gotoSite a {
font-weight: bold;
color: #333;
border: solid 2px #333;
border-radius: 10px;
background-color: #ffcc33;
padding: 8px;
padding-left: 30px;
padding-right: 30px;

}
#gotoSite a:hover {
background-color: #BF7CB2;
}

#footer { 
	grid-column: 2 / 3;
	grid-row: 4 / 5;
	    background-color: none;
}

#adresse {
background: none;
  float: left;
  display: block;
  width: 33vw;
  padding: 2em;
  margin: 0px;

}

#footerlogo {
background: none;
float: right;
display: block;
  /*width: 30vw;*
height: 160px; */
  padding: 2em;
  align-items: right;
}

#footerlogo img {
height: 160px;
object-fit: contain;

}






/* ======= Responsive style ======= */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}
@media screen and (max-width: 991px) {

}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 480px) {
}