body {
  width: 100%;
}
/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
  height: 50%;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: #1c202a;
}

.text {
  color: white;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.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;
}

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

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.sliderLine1 {
  font-size: 35px;
}
.sliderLine2 {
  font-size: 40px;
  font-weight: bold;
  font-family: "Varela", sans-serif;
}

@media only screen and (max-width: 1200px) {
  .content1 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: auto;
  }

  .content2 {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .imgRow {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .plakat img {
    width: 80%;
  }
}

.info {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-left: 10%;
  margin-right: 10%;
  font-size: larger;
  /* background-color: #ffd86b; */
  background-color: #a2c77d;
  padding: 2%;
  margin-top: 1%;
}

.info p {
  margin: 0;
  line-height: 150%;
}
@media only screen and (max-width: 1200px) {
  .info {
    margin-top: 2.5%;
  }
}
.plakat {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 1%;
  margin-top: 1%;
}
.plakat img {
  width: 70%;
}
.content0 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 1.5%;
  border-top: #014a7f 2px solid;
  font-size: x-large;
}

.content1 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-left: 10%;
  margin-right: 10%;
  /* margin-top: 1.5%; */
  margin-bottom: 5%;
  border-top: #9a1813 2px solid;
  border-bottom: #014a7f 2px solid;
  padding-top: 2%;
  padding-bottom: 2%;
}
.content1 h1 {
  font-weight: normal;
}

.content1 h2 {
  font-weight: normal;
}

.content1 p {
  font-size: larger;
}

.content1 .divCaption {
  margin: 1%;
  padding: 1%;
}

.content1 h2 {
  font-weight: 600;
}

.content2 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: #e6e6e6;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 5%;
  padding-bottom: 5%;
}
.content2 h3 {
  font-weight: normal;
  margin: 0;
  padding-bottom: 1%;
  font-size: medium;
}

.content2 h1 {
  font-style: italic;
  margin: 0;
  font-weight: normal;
  padding: 1%;
  display: inline-block;
  position: relative;
}

.content2 h1:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #9a1813;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.content2 h1:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.content2 p {
  text-align: center;
  line-height: 150%;
  font-size: large;
}

.imgRow {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.imgDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1%;
  padding-bottom: 1%;
  font-size: large;
  margin-left: 1%;
  margin-right: 1%;
}

.imgDiv img {
  width: 90%;
  border-radius: 5px;
  padding-bottom: 4%;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

.modal-content {
  margin: auto;
  display: block;
  width: 75%;
  max-width: 75%;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

@-webkit-keyframes zoom-out {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
@keyframes zoom-out {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}

.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}
.out {
  animation-name: zoom-out;
  animation-duration: 0.6s;
}

@media only screen and (max-width: 1200px) {
  .modal-content {
    width: 100%;
  }
}

.content3 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 5%;
  padding-bottom: 5%;
  border-bottom: #014a7f 2px solid;
  border-top: #9a1813 2px solid;
}

@media only screen and (max-width: 1200px) {
  .content3 {
    flex-direction: column;
  }
}

.content3 h2 {
  font-weight: normal;
  font-style: italic;
  padding-right: 5%;
  line-height: 160%;
}

.content3 p {
  padding-right: 5%;
  padding-left: 5%;
  font-size: large;
  line-height: 150%;
}

.content4 {
  display: flex;
  flex-direction: row;
  background-color: #e6e6e6;
  padding-top: 6%;
  padding-bottom: 5%;
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
  border-bottom: #9a1813 2px solid;
}
.content4 button {
  margin-top: 1%;
  border: none;
  border-radius: 5px;
  font-size: larger;
  padding: 2%;
  background-color: #9a1813;
  color: white;
}

.content4 button:hover {
  background-color: #014a7f;
}

.webcam {
  width: 45%;
  border-radius: 5px;
}

.content4 h1 {
  font-weight: normal;
}
.content4 p {
  font-size: large;
  line-height: 150%;
}
.content4 div {
  padding-left: 10%;
}

.content4 a {
  outline: none;
  text-decoration: none;
}
.content4 a img {
  width: 90%;
}
#btn42 {
  background-color: #014a7f;
  margin-top: 6%;
}
#btn42:hover {
  background-color: #9a1813;
}

.content5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 5%;
  margin-bottom: 5%;
}

.content5 h3 {
  font-weight: normal;
  font-size: medium;
  margin: 0%;
}
.content5 h1 {
  font-weight: normal;
}

.content5 p {
  font-size: large;
  line-height: 150%;
}

.chart {
  display: flex;
  flex-direction: row;
  justify-items: center;
}

@media only screen and (max-width: 1200px) {
  .chart {
    flex-direction: column;
  }
  .content4 {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .webcam {
    width: 50%;
    margin-left: 5%;
  }
}

.sheet {
  display: flex;
  flex-direction: column;
  margin: 1%;
  padding: 2%;
  width: 90%;
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 10px;
}
.sheet h2 {
  font-weight: normal;
}

.sheet span {
  font-size: xx-large;
  font-weight: bold;
}

.sheet button {
  margin-top: auto;
  outline: none;
  border: none;
  background-color: none;
  color: #ccc;
  font-size: large;
  padding: 3%;
  border: 2px #ccc solid;
  border-radius: 10px;
}

.sheet button:hover {
  background-color: #9a1813;
  border-color: #9a1813;
  color: white;
}

.content6 {
  border-top: #014a7f 2px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5%;
  margin-left: 10%;
  margin-right: 10%;
}
.content6 h1 {
  font-weight: normal;
}
.content6 p {
  font-size: large;
  line-height: 140%;
}
