body {
	background-image: linear-gradient(to bottom, rgba(112,179,225), rgba(255,255,255));
	background-repeat: no-repeat; 
	margin: 10px;
	padding: 10px;
	max-width: 800pt;				
	font-family: sans-serif;
	font-size: 12px;
	color: #333333;
	background-color: #ffffff;
	border-radius: 18px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 18px 0 rgba(0, 0, 0, 0.19);     
 	margin-left:auto; margin-right:auto;
}
header, article, main {
	border-radius: 0.5em 0.5em 0.5em 0.5em;
	border: 1px solid;
	padding: 10px;
	margin: 10px;
}

header {
	background: #FFFFFF;
	border-color: #d5d5d5;
	min-height: 130px;
}
footer {
	padding: 10px;
	margin: 0px 10px 0px 10px;
}
header img {
	width: 11em;
	margin-right: 50px;
	float:left;
}

main {
	display: block;
	background: #ffeaac;
	border-color: #8a9da8;
}

#aktuellerSeitennamesichtbar{
	display: none;
	float: left;
	color: #000000;
}
/*______________________
 Stil für das Menü */
.menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	padding: 10px;
	list-style: none;
  }
  .menu ul {
	list-style-type: none;
	margin: 0;
	margin-left: 5px;
	padding: 0;
	display: flex;
  }
  
  .menu ul li {
	margin-right: 20px;
  }
  
  .menu ul li:last-child {
	margin-right: 0;
  }
  
  .menu a {
	font-size: 12px;
	font-weight:normal;
	color: #000080;      
	text-decoration: none;
	text-align: left;
	background-repeat: no-repeat;
	padding-top: 0px;
	line-height: 1.2;
  }
 .menu a:hover
{
	background-color:#101080;
	text-decoration:none;
	color:#FFFFFF;
	background-repeat: no-repeat;
}
.menu a:active
{
	background-color:#0000FF;
	text-decoration:none;
	color:#00FFFF;
	background-repeat: no-repeat;
}
  
  /* Stil für den Hamburger */
  .hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
  }
  
  .hamburger div {
	width: 25px;
	height: 3px;
	background-color: #000000;
	margin: 3px 0;
  }
  
  @media screen and (max-width: 660px) {
	.menu {
	width: 120px;
	}
	
	.menu ul {
	  display: none;
	  flex-direction: column;
	  background-color: #f7f3f3;
	  position: absolute;
	  top: 50px;
	  left: 0;
	  width: 100%;
	}
	.menu ul.active {
	  display: flex;
	}
	.menu ul li {
	  margin: 10px;
	}
	.hamburger {
	  display: flex;
	  float: left;
	}
	#aktuellerSeitennamesichtbar{
		display: inline;
		margin: 5px;
	}
  }

  