.button-33 {
  background-color: white;
  border-radius: 100px;
  box-shadow: rgba(185, 146, 199, 0.2) 0 -25px 18px -14px inset,
    rgba(185, 146, 199, 0.15) 0 1px 2px, rgba(185, 146, 199, 0.15) 0 2px 4px,
    rgba(185, 146, 199, 0.15) 0 4px 8px, rgba(185, 146, 199, 0.15) 0 8px 16px,
    rgba(185, 146, 199, 0.15) 0 16px 32px;
  color: #685293;
  cursor: pointer;
  font-family: poppins;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  animation: blinkBg 1.5s infinite;
}

.button-33:hover {
  box-shadow: rgba(185, 146, 199, 0.35) 0 -25px 18px -14px inset,
    rgba(185, 146, 199, 0.25) 0 1px 2px, rgba(185, 146, 199, 0.25) 0 2px 4px,
    rgba(185, 146, 199, 0.25) 0 4px 8px, rgba(185, 146, 199, 0.25) 0 8px 16px,
    rgba(185, 146, 199, 0.25) 0 16px 32px;
  transform: scale(1.05);
}

.glow-on-hover:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 100px;
}

.glow-on-hover:active {
  color: #000;
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  left: 0;
  top: 0;
  border-radius: 100px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/* Keyframes for blinking background */
@keyframes blinkBg {
  0%,
  100% {
    background-color: #e8bef8;
  }
  50% {
    background-color: #ffffff;
  }
}

.blink-text {
  animation: blinkText 1.1s infinite;
}

@keyframes blinkText {
  0%, 100% {
    color: #ea2121; /* red-500 hex value */
  }
  50% {
    color: #ff6565;
  }
}
