
body {
  margin: 0;
  background: #ffffff;
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.mandala-container {
  position: absolute;
}


.mandala-container img {
  width: 100%;
  height: 100%;
  display: block;
}

.hotspot {
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
}

.text {
  color: black;
  position: absolute;
  bottom: -10px;
  width: 100%;
  text-align: center;
  font-style: italic;
  font-weight: 600;
  opacity: 0.8;
}

/* ====== DEBUG (nur temporär) ====== */

.hotspot {
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
}
*/

.chaos-1 {
  width: 1366px;
  height: 768px;
}

.chaos-2 {
  width: 1366px;
  height: 768px;
  transform: rotate(0.5deg);
}

.chaos-3 {
  width: 650px;
  height: 650px;
  transform: rotate(-1deg);
}


.hotspot2 {
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
 }

.hotspot2 {
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
}
*/

.hotspot2:hover {
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.hotspot:hover {
  animation: shake 0.3s infinite;
}

@keyframes shake {
  0% { transform: translate(0, 0); }
  25% { transform: translate(1px, -1px); }
  50% { transform: translate(-1px, 1px); }
  75% { transform: translate(1px, 1px); }
  100% { transform: translate(0, 0); }
}

.hotspot2:hover {
  animation: shake 0.3s infinite;
}

@keyframes shake {
  0% { transform: translate(0, 0); }
  25% { transform: translate(1px, -1px); }
  50% { transform: translate(-1px, 1px); }
  75% { transform: translate(1px, 1px); }
  100% { transform: translate(0, 0); }
}

#Bewegung {
    animation-name: Bewegung;
    animation-duration: 0.25s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;

}

@keyframes Bewegung{
  from{transform: rotate(-25%);}
  to{transform: translateY(25%);}
  }