/* .wrapper {
  background: linear-gradient(135deg, #14ffe9, #ffeb3b, #ff00e0);
  border-radius: 10px;
  animation: animate 1.5s linear infinite;
}

.wrapper .display {
  z-index: 999;
  background: white;
  border-radius: 8px;
}

@keyframes animate {
  100% {
    filter: hue-rotate(360deg);
  }
} */

.wrapper {
  background: linear-gradient(135deg, #7966FF, #A259FE);
  border-radius: 10px;
  animation: animate 1.5s linear infinite;
}

.wrapper .display {
  z-index: 999;
  background: white;
  border-radius: 8px;
}

@keyframes animate {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(10deg);
  }
}

