h1 {
  font-family: "Pacifio";
  font-size: 5rem !important;
}

#kurt {
  border-radius: 16px;
  width: 80%;
}

#kurtText {
  font-size: 2rem;
}

#poster-noah {
  max-width: 100%;
  max-height: 70vh;
  margin: 0 auto;
  margin-bottom: 40px;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.284);
  border-radius: 16px;
}

#poster-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

#redirect-notice {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  text-align: center;
  z-index: 1050;
  /* Stellt sicher, dass die Leiste über der Navbar liegt */
  display: none;
  /* Standardmäßig ausgeblendet */
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#redirect-notice a {
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

#mission-text {
  width: 90%;
}

#mission-img {
  border-radius: 16px;
}

#whatapp {
  width: 100%;
}

#whatapp img {
  width: 100%;
  -webkit-filter: drop-shadow(0px 0px 5px #d6d6d6);
  filter: drop-shadow(0px 0px 5px #d6d6d6);
}

@media (min-width: 1300px) {
  #whatapp {
    width: 75%;
  }

  #mission-text {
    width: 75%;
  }

  #mission-small {
    display: none;
  }
}

@media (max-width: 1300px) {
  #mission-img {
    display: none;
  }

  #mission-big {
    display: none;
  }
}

/* Shake Animation */
@keyframes shake {
  0% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(-10px);
  }

  20% {
    transform: translateX(10px);
  }

  30% {
    transform: translateX(-10px);
  }

  40% {
    transform: translateX(10px);
  }

  50% {
    transform: translateX(-10px);
  }

  60% {
    transform: translateX(10px);
  }

  70% {
    transform: translateX(-10px);
  }

  80% {
    transform: translateX(10px);
  }

  90% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

/* Rotate Animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotate {
  animation: rotate 1s ease;
}

/* Confetti */
#confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 9999;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 16px;
  background: #f00;
  /* Wird per JS zufällig gesetzt */
  top: -20px;
  opacity: 0;
  animation: fall 5s linear forwards;
}

@keyframes fall {
  0% {
    transform: translateY(0) rotateZ(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(100vh) rotateZ(720deg);
    opacity: 0;
  }
}