body {
	background-color: #404040 ;
	background-size: cover;
	background-repeat: no-repeat;
	color: #F5F5F5;
	font-family: 'Roboto', sans-serif;
	line-height: 1.6;
	font-size: 16px;
	margin: 0px;
	padding: 0px;
	text-align: left;
}

h1, h2, h3, h4, h5, h6 {
	color: #F5F5F5;
}
.img-einzel {
  display: block;
  border-radius: 2em;
  width: 50%;
  margin: auto;
}

table {
	width: 95%;
	margin:auto;
	border-collapse: collapse;
}
table td {
	border: solid #F5F5F5 1px;
	padding: 1em;
}

.mySlides {
    display: none;
}

.mySlides img {
  border-radius: 2em;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

  .slideshow-container {
  position: relative;
  margin: auto;
  width: 50vw;
  }

.active {
  display: block;
}
  /* Next & previous buttons */
  .prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: #000000;
  }
  /* Position the "next button" to the right */
  .next {
  right: 0;
  border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: #ff0000;
    }

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
    }
    @-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
    }
    @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
    }