/* Allgemeine Einstellungen */
body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background-attachment: fixed;
	color: Wheat;
	/* height:2000px; */
	width: 100%;
	overflow-x: hidden;
	background-color: grey;
	background-image: url("images/9.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
span.highlight {
	background-color: rgba(50,50,50,0.7);
	padding-left: 0.5em;
	padding-right: 0.5em;
}

/* Topnavigation */
.topnav {
  position: fixed;
  margin-left:80px;
  background-color: rgba(50,50,50,0.3);
  overflow: hidden;
  width: calc(100% - 80px);
}
.topnav a {
  float: left;
  color: Wheat;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  /* text-transform: uppercase; */
}
.topnav a:hover {
  background-color: Wheat;
  color: black;
}
.topnav a.active {
  /* background-color: Wheat;
  color: black; */ 
  font-weight: bold;
}
.topnavright {
	float: right;
}
.topnavleft	{
	float: left;
	font-weight: bold;
}

/* Footernavigation */
.footernav {
  background-color: rgba(50,50,50,0.3);
  overflow: hidden;
  position: fixed;
  bottom: 0;
  margin-left:80px; 
  width: calc(100% - 80px);
}
.footernav a {
  float: left;
  display: block;
  color: Wheat;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.footernav a:hover {
  background-color: Wheat;
  color: black;
}
.footernav a.active {
  font-weight: bold;
}
.footernav-right {
	float: right;
}

/* Seitennavigation */
.sidenav {
  /* height: 2000px; */
  width: 80px;
  z-index: 1;
  top: 0;
  left: 0;
  padding-top: 10px;
  overflow-x: hidden;
  /* position: fixed; */
  background-color: rgba(50,50,50,0.3);
}
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
}
.sidenav a:hover {
  color: #f1f1f1;
}
.sidenav img {
	background-color: Cornsilk;
	width: 40px;
	height: 40px;
	border-radius: 35px;
}

/* Hauptbereich */
.content {
	width: calc(100% - 80px); /* entsprechend Sidenav */
	/* height: 100%; */
	position: fixed;
	top: 0;
	margin-top: calc(25% - 40px);
	margin-left: 80px; /* entspricht der Breite der Sidenav */
	padding-bottom: 0px 10px;
	font-size: 30px;
	text-align: center;
	vertical-align: middle;
}

/* Smartphones */
@media screen and (max-height: 450px) {
  .content, .topnav a, .footernav a, .sidenav a {font-size: 80%;}
}
@media screen and (max-width: 600px) {
  .content, .topnav a, .footernav a, .sidenav a {font-size: 80%;}
  .topnav, .topnav a {display: none;}
} 
