/* Page layout */
body {
  background: black;
  color: #ffd1ec;
  font-family: system-ui, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  margin: 0;
}

/* Glow effect for the animated text */
.glow {
  text-shadow: 
    0 0 8px rgba(255,119,199,.6),
    0 0 22px rgba(255,119,199,.35);
}

/* Blinking cursor after the text */
.cursor::after {
  content: "▌";
  margin-left: .08em;
  animation: blink 1s steps(1, end) infinite;
  color: #ff77c7;
}

/* Cursor blink animation */
@keyframes blink {
  50% { opacity: 0; }
}
