* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#plakatDesignsVerworfen {
  background-color: black;
  padding: 5%;
  height: 95vh;
  width: 100%;
}

#plakatDesignsVerworfen h1,
#plakatDesignsVerworfen p {
  color: white;
  text-align: center;
}

#plakatDesignsVerworfen h1 {
  letter-spacing: 0.2em;
  font-size: 4vw;
  margin-bottom: 3%;
}

#plakatDesignsVerworfen p {
  font-family: "Hedvig Letters Sans", sans-serif;
}

#quellen {
  padding: 5%;
  height: 95vh;
}

#quellen h1 {
  text-align: center;
  letter-spacing: 0.2em;
  font-size: 4vw;
  margin-bottom: 3%;
}

#quellen p {
  font-family: "Hedvig Letters Sans", sans-serif;
  color: black;
  text-align: left;
}

#auflistungQuellen {
  column-count: 3;
  margin-top: 2%;
}

#auflistungQuellen ul a {
  font-family: "Hedvig Letters Sans", sans-serif;
  text-decoration: none;
  list-style-type: none;
  color: black;
}

#auflistungQuellen ul a {
  font-family: "Hedvig Letters Sans", sans-serif;
  text-decoration: none;
  list-style-type: none;
  color: black;
}

#auflistungQuellen li {
  margin: 1% 0;
  font-size: 1em;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

#auflistungQuellen li:hover {
  background-color: black;
  color: white;
}

#plakatBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.slideshow {
  overflow: hidden;
  width: 100%;
  margin: 2rem 0;
}

#plakatBox {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: slide 50s linear infinite;
}

#plakatBox img {
  width: 20em;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 1rem;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.slideshow:hover #plakatBox {
  animation-play-state: paused;
  cursor: pointer;
}

#grossAnsicht {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#grossAnsicht.active {
  display: flex;
}

#grossAnsicht img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  width: auto;
  display: none;
}

#blackFooter {
  background-color: black;
  padding: 0% 5%;
  height: 5vh;
}

#blackFooter p,
#blackFooter a {
  text-align: end;
  font-family: "Hedvig Letters Sans", sans-serif;
  font-size: 1em;
  color: #ffffff;
}

#blackFooter a,
#whiteFooter a {
  text-decoration: none;
}

#whiteFooter {
  background-color: white;
  display: flex;
  justify-content: space-between;
  text-align: end;
  font-family: "Hedvig Letters Sans", sans-serif;
  font-size: 1em;
  padding: 0% 5%;
  height: 5vh;
}

#whiteFooter p {
  color: black;
}

/* MEDIA QUERIES */

@media (max-width: 900px) {
  #plakatDesignsVerworfen h1,
  #quellen h1 {
    font-size: 2.5em;
  }
}

@media (max-width: 700px) {
  #plakatDesignsVerworfen p,
  #quellen p,
  #auflistungQuellen li {
    font-size: 1.1em;
  }
  #plakatDesignsVerworfen h1,
  #quellen h1 {
    margin-bottom: 4%;
  }

  #auflistungQuellen {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  #plakatDesignsVerworfen h1,
  #quellen h1 {
    font-size: 2em;
  }
  #plakatDesignsVerworfen p,
  #quellen p,
  #auflistungQuellen li {
    font-size: 1em;
  }

  #auflistungQuellen {
    column-count: 1;
  }
}

@media (max-width: 500px) {
  #plakatDesignsVerworfen h1,
  #quellen h1 {
    font-size: 1.7em;
  }
  #plakatDesignsVerworfen p,
  #quellen p,
  #auflistungQuellen li {
    font-size: 0.9em;
  }
}
