.jumping-button {
  padding: 10px 20px;
  font-family: "Trebuchet MS", Tahoma, sans-serif;
  font-size: 2em; /* Erhöhte Schriftgröße */
  color: white;
  background-color: transparent; /* Hintergrund transparent */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  border: none; /* Kein Rand */
  cursor: pointer;
  outline: none;
  position: absolute;
  bottom: 66px; /* Abstand vom unteren Rand */
  right: 33px;
  transform: translateX(-50%);
  animation: jump 3s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 60%;
}

@keyframes jump {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -30px);
  }
  60% {
    transform: translate(-50%, -15px);
  }
}

.parallax-section {
  position: relative;
}
