/* TALENTEN PAGINA */
.UI-krachtig {
  display: inline-block;
  animation: growPulse 2s infinite;
  transition: transform 0.3s ease-in-out;
  color: #fff;
  font-size: clamp(1.5rem, 7vw, 4rem);
}
@keyframes growPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes colorChange {
  0% {
    color: #ff0055;
  }
  25% {
    color: #ff9900;
  }
  50% {
    color: #00cc66;
  }
  75% {
    color: #0099ff;
  }
  100% {
    color: #ff0055;
  }
}
.UI-kleurrijk {
  font-family: "Roboto Slab", "Open Sans", Sans-Serif;
  display: inline-block;
  font-size: clamp(2rem, 6vw, 4rem);
  animation: colorChange 4s infinite ease-in-out;
}
