/* === Global Animated Background === */

body {
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -30%;
  z-index: -1;

  background:
    radial-gradient(circle at 30% 30%, rgba(57,217,138,.15), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255,209,102,.12), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(110,168,255,.15), transparent 40%);

  animation: spinBg 70s linear infinite;
  transform-origin: center;
}

@keyframes spinBg {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}



.image-form {
  display: inline-block;
  margin: 0;
}


.image-button-small {
  display: inline-block;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.image-button-small img {
  display: block;
  width: 100px; /* Größe anpassen */
  height: auto;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.image-button-small:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);

}

/* Klick-Animation */
.image-button-small:active {
  transform: scale(0.97);
}

.image-button {
  display: inline-block;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-button img {
  display: block;
  width: 220px; /* Größe anpassen */
  height: auto;
  transition: transform 0.4s ease, filter 0.3s ease;
}



.image-button:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);

}

/* Klick-Animation */
.image-button:active {
  transform: scale(0.97);
}

.wrap {border: 2px solid black;
border-radius: 8px;
padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.row {justify-content: center;}