.cursor-blinker {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.box-shadow-breath {
  animation: shadow-breath 2s linear infinite;
}

@keyframes shadow-breath {
  0% {
    box-shadow: 0 0 8px var(--tw-shadow-color, currentcolor);
  }
  33% {
    box-shadow: 0 0 20px var(--tw-shadow-color, currentcolor);
  }
  66% {
    box-shadow: 0 0 20px var(--tw-shadow-color, currentcolor);
  }
  100% {
    box-shadow: 0 0 8px var(--tw-shadow-color, currentcolor);
  }
}