html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
  color: #00ffe1;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  isolation: isolate; /* keeps blending/stacking sane */
}

/* Background image behind the text */
.container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/neon-cat.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(900px, 90vw);
  opacity: 0.35;          /* adjust this */
  filter: blur(0px);      /* optional: blur(2px) looks nice */
  z-index: -1;
}

/* Optional: add a soft dark overlay so text stays readable */
.container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.35), rgba(0,0,0,0.85));
  z-index: -1;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(0, 255, 225, 0.35);
}

.small {
  opacity: 0.8;
  font-size: 0.95rem;
}
