
body{
	font-family: courier;
	text-align: center;
	background-color: white;
	color: black;
}
content{
	text-align: center;
}
body.home{
	margin: 0;
	height: 100vh;
	display: grid;
}
* {
	box-sizing: border-box;
}
h1{
	font-size: 35px;
}
h2{
    
}
div.text{
	width: 800px;
	margin: auto;
	padding: 5px;
}
/*Navigation*/
div.navigation{
	position: absolute;
	top: 10px;
	left: 10px;
}
img.navigation{
	height: 75px;
	width: 75px;
	cursor: pointer;
}
div.navi-inhalt {
	display: none;
	position: absolute;
	background-color: #cccccc;
	min-width: 200px;
	z-index: 1;
	opacity: 0.85;
}
.navi-inhalt a{
	padding: 16px 16px;
	text-decoration: none;
	display: block;
	color: black;
	text-align: center;
	vertical-align: middle;
	line-height: 100px;
	font-size: 35px;
}
.navi-inhalt a:hover {
	background-color: #f2f2f2;
}
.navigation:hover .navi-inhalt {
	display: block;
}
/*Ende navi*/

/*slideshow*/
.mySlides {
	display: none;
}
img.slideshow {
	vertical-align: middle;
	height: 700px;
}
div.slideshow{
	z-index: -1;
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
/*Foto-credits home*/
div.credits{
	position: fixed;
	bottom: 0px;
	right: 10px;
}

/*Kontakt-Formular*/
div.form{
	display: flex;
	justify-content: center;
}
input{
	width: 400px;
	height: 50px;
}
textarea{
	height: 200px;
	width: 400px;
}

button[type=submit]{
	width: 200px;
}
td{
	text-align: left;
	margin: 5px 5px 5px 5px;
}
button.form{
	width: 400px;
	height: 50px;
	font-size: 20px;
}
b.form{
	font-size: 20px;
	vertical-align: top;
}
/* Fehlermeldung*/

div.meldung{
	position: fixed;
	top: 75px;
	right: 10%;
	width: 20%;
	color: white;
	background-color: #cccccc;
	padding: 20px;
	text-align: center;
	opacity: 0.85;
}

/* Agenda*/

table.agenda {
  border-collapse: collapse;
  width: 100%;
}

