/* press-start-2p-regular - latin */
@font-face {
	font-family: 'Press Start 2P';
	font-style: normal;
	font-weight: 400;
	src: local(''),
		 url('press-start-2p-v14-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		 url('press-start-2p-v14-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
  
body {
	background:url(ascii.jpg);	
	font-family: "Press Start 2P";
}

.drehen {
	transform: rotate(20deg);
}

h1 {
	text-shadow: 2px 2px 5px  #b810e9;
	color:    #e9c810;
	margin-bottom: 0em;
}

.rahmen {
	border: 2.5px solid cyan;
	padding-left: 12px;
}

.h1-small {
	font-size: 20px;
	text-shadow: 2px 2px 5px #b810e9;
	color: YELLOW;
	margin-bottom: 0em;
}

#klein {
	padding-top: 0px;
	font-family: 'Press Start 2P';
	font-size: 8px;
}

#pad {
	padding-bottom: 0px;
}

h2 {
	margin-bottom: 0em;
	text-shadow: -5px 2px 3px  fuchsia;
}

h3 {
	font-family: 'Press Start 2P', cursive;
	margin-top: 0em;
	margin-bottom: 2em;
}

#schwarz {
	background-color: BLACK;
}

TH {
	color: WHITE;
}

a {
	color: WHITE;
	text-decoration: none;
}

p {
	color: WHITE;
	font-size: 13.5px;
	margin-bottom: -1.2em;
	margin-top: 0em;
}

.dd-size {
	font-size: 13px;
}

.imgWrap {
	width: 1010px;
	height: 631px;
	background: url(geos1_FULL.jpg) no-repeat;
}

#unten {
	left: 45px;
}


/* ------------------------- */
/* ---- DROPDOWN-MENUES ---- */
/* ------------------------- */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: GREEN;
  min-width: 100px;
  /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
  padding: 12px 16px;
  z-index: 1;
}

.dropdown-content02 {
  display: none;
  position: .dropdown-content;
  background-color: GREEN;
  min-width: 100px;
  /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
  z-index: 2;
}

.dropdown-content-seuck {
  display: none;
  position: absolute;
  background-color: maroon;
  min-width: 100px;
  /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
  padding: 12px 16px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropdown-content02 {
  display: block;
}

.dropdown-content02:hover .dropdown-content-seuck {
  display: inline-block;
}

