/* ---------------------------- Layout -----------------------------*/

* {box-sizing: border-box;}

html {height: 100%;}

body {
	position: relative;
    margin: 0;
    height: 100%;
    height: 100vh;
    height: 100svh;
	overflow: hidden;
	display: flex; 
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #F0B665;
}

#Logo {
	position: absolute;
    opacity: 0;
    height: 95vh;
    transition: 3s;
}

p, div {
	font-family: Ubuntu, arial;
	color: #000080;
	line-height: 1.3;
	font-size: 18px;
}

#onlineLED {
	position: fixed;
	left: 3px;
	top: 3px;
	width: 10px;
	height: 10px;
	border-radius: 2px;
	background-color: grey;
}

/* ---------------------------- Menü -----------------------------*/

.MnuBtn {
	z-index: 80;
	position: absolute;
	width: 36px;
	height: 32px;
	min-width: 40px;
	min-height: 36px;
	padding: 3px;
	font-family: GelPen, sans-serif; 
	font-size: 22px;
	text-align: center;
	border: solid 1px #DEA911;
	border-radius: 9px;
	box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.2);
	cursor: pointer;
	opacity: 0;
	transition: .3s;
}
.MnuBtn.show {opacity: .9;}
	
	
.MnuBtn.DE {
	background-color: #6582FF;
	color: #374DA9;
	left: 7px;
	top: 7px;
}

.MnuBtn.intern {
	background-color: #E0E6FF;
	left: 5px;
	top: 5px;
	opacity: .5;
	color: red;
	display: none;
	margin-left: 12px;
	transition: .5s;
}
.MnuBtn.intern:hover {opacity: 1;}
.MnuBtn.intern.show {display: block;}
.MnuBtn.intern.flach {
	top: 0;
	width: 64px;
	height: 10px;
	min-height: 0;
	min-width: 0;
	font-size: 10px;
}

.MnuBtn.EN {
	background-color: #FF29C2;
	color: #AE27A3;
	right: 9px;
	top: 7px;
}
.MnuBtn.DE:hover {background-color: #7E97FF;}
.MnuBtn.EN:hover {background-color: #FF6CD5;}
.MnuBtn img {width: 100%;}

.MnuBtn.DE a {
	text-decoration: none;
	color: #374DA9;
}
.MnuBtn.EN a {
	text-decoration: none;
	color: #AE27A3;
}


.MnuWin {
	z-index: 100;
	position: absolute;
	top: 11vh;
	min-width: 200px;
	max-width: 500px;
	opacity: 0;
	display: none;
	overflow-y: hidden;
	padding: 20px 30px 20px 20px;
	text-align: center;
	border: solid 1px #eee;
	border-radius: 20px;
	transition: .25s;
	background-color: rgba(255, 255, 255, 0.9);
}
.MnuWin.show {
  opacity: 1;
  visibility: visible;
  display: block;
}

.MnuWin.DE {
	left: 10px;	
	box-shadow: 2px 2px 16px 5px rgba(101, 130, 255, .6);
}
.MnuWin.DE.login {
	background-color: rgba(255, 255, 255, .5);
}
.MnuWin.EN {
	right: 14px;	
	box-shadow: 2px 2px 16px 5px rgba(255, 108, 213, .6);
}

h2.SubMnu {
	font-family: "Noteworthy_bold";
	font-weight: 300;
	letter-spacing: 2px;
	font-size: 42px;	
	margin: 0 0 30px 0;
	text-align: center;	
}

.HauptMnuPkt {
	font-family: "Noteworthy_bold";
	font-weight: 300;
	letter-spacing: 2px;
	font-size: 30px;
	line-height: 1.3;	
	margin-bottom: 18px;	
	cursor: pointer;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
	transition: .1s;
}
.HauptMnuPkt.DE, h2.SubMnu.DE {color: #374DA9;}
.HauptMnuPkt.EN, h2.SubMnu.EN {color: #AE27A3;}
.HauptMnuPkt.klein {font-size: 20px;}
.HauptMnuPkt.DE:hover, .HauptMnuPkt.DE.klein:hover {
	text-shadow: 0 0 15px rgb(255, 108, 213, .5),
	 0 0 15px rgb(255, 108, 213, .5),
	 0 0 15px rgb(255, 108, 213, .5),
	 0 0 15px rgb(255, 108, 213, .5);
} 
.HauptMnuPkt.EN:hover, .HauptMnuPkt.EN.klein:hover {
	text-shadow: 0 0 15px rgb(126, 151, 255, .5),
	 0 0 15px rgb(126, 151, 255, .5),
	 0 0 15px rgb(126, 151, 255, .5),
	 0 0 15px rgb(126, 151, 255, .5);
} 


/* ~~~~~~~~~~~~~~~~ intern ~~~~~~~~~~~~~~~~~ */

h1.intern {
	font-family: "Open Sans", sans-serif;
	font-weight: bold;
	letter-spacing: 0;
	font-size: 30px; 
	margin: 0 0 24px 0;
}

h3.intern {
	font-family: "Open Sans", sans-serif;
	font-weight: bold;
	letter-spacing: 0;
	font-size: 24px; 
	margin: 0 0 18px 0;
}


#internMenue {
	z-index: 10;
	position: absolute;
	left: 70px;;
	top: 2px;
	transition: .5s;
	display: none;
}
#internMenue.show {display: flex;}
#internMenue.vertical {flex-direction: column;}
#internMenue.flach {
	left: 90px;
	top: 0;
	width: 200px;	
	height: 10px;
	overflow: hidden;
}
#internMenue.flach:hover {
	left: 70px;;
	width: auto;	
	height: auto;
}

div.internFenster {
	position: relative;
	background-color: rgba(255, 255, 255, .9);
	min-width: 500px;
	min-height: 300px;
	max-width: 90%;	
	max-height: 90%;	
	box-shadow:	5px 5px 15px 0 #333;	
	border: 1px solid #ddd;
	border-radius: 7px;
	overflow-y: scroll;
	padding: 10px;
	margin: 37px 0 12px 0;
	display: none;	
	opacity: 0;
	transition: .3s;
}
div.internFenster.show {
	display: block;	
	opacity: 1;

}

