/* ---------------------------- 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;
}

a {
	color: blue !important;
	cursor: pointer;
	text-decoration: none;
	border-bottom: 1px solid #999;
}
a:hover {color: red !important;}

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

.MnuBtn {
	z-index: 80;
	position: absolute;
	width: 9vh;
	height: 7vh;
	min-width: 40px;
	min-height: 36px;
	padding: 3px;
	font-family: GelPen, sans-serif; 
	font-size: 16px;
	text-align: center;
	border: solid 1px #DEA911;
	border-radius: 12px;
	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: 10vh;
	top: 7px;
	font-size: 5vh;
	opacity: .5;
	color: red;
	display: none;
	margin-left: 12px;
}
.MnuBtn.intern:hover {opacity: 1;}

.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 30px 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);
}

.AnmHG {
	position: absolute;
	bottom: 0;left: -20px;
	top: auto;
	width: calc(100% + 20px);
    height: 26px;
	margin: 0;
	display: none;
	background-color: #EEEEFF;
}
.AnmHG i {
	display: inline-block;
	cursor: pointer;	
}
.AnmHG i:hover {color: red;}

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: 23vh;
	top: 7px;
	transition-delay: .5s;
	display: none;
}

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;

}

#DokHG {padding-top: 75px !important;}
