@import "tailwindcss";

@import url('https://fonts.googleapis.com/css2?family=Playwrite+GB+S+Guides:ital@0;1&display=swap');

.playwrite-gb-s-guides-regular {
  font-family: "Playwrite GB S Guides", cursive;
  font-weight: 700;
  font-style: normal;
}
.glow-text {
  /* font-family: sans-serif; */
  font-size: 40px;
  color: #ffffff;
  text-align: center;
  /* background-color: #111111; */
  padding: 20px;
  
  /* Link the animation name, duration (2 seconds), and set it to repeat forever */
  animation: pulseGlow 2s infinite ease-in-out;
}

/* Define the low and high glow states */
@keyframes pulseGlow {
  0%, 100% {
    /* Low Glow State */
    text-shadow: 
      0 0 4px #00f3ff,
      0 0 10px #00f3ff;
  }
  50% {
    /* High Glow / Intense State */
    text-shadow: 
      0 0 4px #00f3ff,
      0 0 15px #00f3ff,
      0 0 30px #00f3ff,
      0 0 50px #00f3ff;
  }
}


