* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

body{
   background-color: #6dd0f0;
}

/* Bilder standardmäßig ausgeblendet*/
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: fixed;
  top: 80vh;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 40px;
  transition: 0.6s ease;
  user-select: none;
  width: 8vh;
  height: 8vh;
  border-radius: 4vh;
  background-color: white;
  border: 5px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Positionen der vor und zurück buttons */
.next {
  right: 4%;
  border-radius: 4vh;
}

.prev {
   left: 4%;
   border-radius: 4vh;
 }

 #quiz-btn{
   position: fixed;
   height:5vh;
   width: 15vw;
   z-index: 10;
   color: white;
   background-color: black;
   border-radius: 20px;
   border: none;
   font-family: "kit-rounded", sans-serif;
   font-weight: 500;
   font-style: normal;
   font-size: 1rem;
   margin-top: 25%;
   right: 60%;
 }

 #video1{
  position: fixed;
  top:30vh;
  right: 40vh;
 }


/* Punkte ausgeblendet, also ignore*/
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  display: none;
}

.active, .dot:hover {
  background-color: #717171;
}



@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}