*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1a1a1a;
  color: #e3e1d9;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  cursor: crosshair;
  user-select: none;
}

.word {
  position: absolute;
  font-weight: 800;
  text-transform: uppercase;
  will-change: transform, opacity;
  pointer-events: none;
  letter-spacing: -0.02em;
  left: 0;
  top: 0;
}

.ripple {
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid #cc4125;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: expand-ripple 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes expand-ripple {
  0% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}
