body {
  /* display: flex; */
  justify-content: center;
  margin: auto;
	font-family: 'Verdana';
  max-width: 1200px;
	color: darkslategray;
	background-image: url("sky.jpg");
	hyphens: auto;
}

.hintergrund {
	background-color: aliceblue;
}  

* {
	margin: 0;
}

.general {
/*	width: 850px; */
	background-color: aliceblue;
}

.img_top { 
  border:0px;
  width: 100%; 
}

header {
	font-size: 16pt;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
  background-color:lightblue;
}

h1 {
	text-align: center;
	font-size: 18pt;
	line-height: 115%;
  hyphens: none;
  padding: 10px;
}

nav {
  margin: 0px;
  background-color:lightblue;
}

nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 20px;
  padding: 10px 10px 10px 30px;
}

nav li {white-space:nowrap;}

nav a {
	font-size: 16pt;
	text-decoration: none;
	font-weight: bold;
	color:darkslateblue;
	position: relative;
	padding: 5px;
}

nav a:hover {
	background-color: darkslateblue;
	color: aliceblue;
	transition-delay: 100ms;
  transition-property: all;
  transition-timing-function: ease-out;
}

nav a::after {
	content: '';
	height: 2px;
	width: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 150ms ease-in-out;
}

nav a:hover::after {width: 100%;}

main {
  padding: 1vw;
  margin: 0;
}


/********************* section *************************/
.canvas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: justify;
	/* padding: 0px 0px 10px 10px; */
}

.subheading {
	text-align: justify;
	color: black;
	border: 0px;
	padding: 10px 10px 10px 10px;
  margin-bottom: 20px;
  background-color: aliceblue;
  font-size: 14pt;
}

.subheading2 {
	text-align: center;
	color: black;
	border: 0px;
	padding: 10px 10px 10px 10px;
  margin-bottom: 20px;
  background-color: aliceblue;
  font-size: 14pt;
  hyphens: none;
}

.slideshow {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: bisque; */
	position: relative;
	width: 60%;
	height: 0;
	left: 0px;
	padding-bottom: calc(0.75 * 60%);
  margin-bottom: 20px;
	overflow: hidden;
}

.img_mitte {
  position: absolute;
	top: 0;
  width: calc(100% - 20px);
  border-style: solid;
  border-width: 8px;
  border-color: lightblue;
	opacity: 0;
	animation-name: fade;
	animation-duration: 40s;
	animation-iteration-count: infinite;
}

.img_mitte:nth-child(1) { animation-delay: 0s; }
.img_mitte:nth-child(2) { animation-delay: 10s; }
.img_mitte:nth-child(3) { animation-delay: 20s; }
.img_mitte:nth-child(4) { animation-delay: 30s; }

@keyframes fade {
	0%       { opacity: 0; }
	10.00%   { opacity: 1; }
	25.00%   { opacity: 1; }
	35.00%   { opacity: 0; }
	100%     { opacity: 0; }
}

/******************* Footer  *********************/
footer{
  display: flex;
	justify-content: center;
  align-items: center;
	flex-wrap: wrap;
  color: darkblue;
  background-color: lightblue;
/*    gap: 80px; */
	padding: 5px;
}

footer a {
	text-decoration: none;
	color:darkslateblue;
	font-weight: bold;
	padding: 5px;
  margin-left: 50px;
  margin-right: 50px;
	transition-delay: 100ms;
  transition-property: all;
  transition-timing-function: ease-in-out;
}

footer a:hover {
	color: aliceblue;
  background-color: darkslateblue;
	font-weight: bold;
  padding: 6px; 
}

.img_liame { 
  padding-top: 2px;
  margin-left: 50px;
  margin-right: 50px;
  width: auto;
  border: 0;
}

.img_windrose {
  margin-left: 50px;
  margin-right: 50px;
}

.linie {
  background-color: darkblue;
  height: 2px;
}

/******************* Responsive Anpassungen *********************/

@media(max-width: 800px) {
  nav ul {
  flex-direction: column;
  align-items: center;
  }

  nav ul li {
    margin: 0.2rem;
  }
  
  footer {
  font-size: 14pt;
  flex-direction: column;
  gap: 5px;
  }
  .img_liame    { width: 50vw; }
  .img_windrose { display: none; }
}

