:root {
  color-scheme: light dark;
}

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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #0f172a;
  color: #e2e8f0;
  text-align: center;
  padding: 1.5rem;
}

main {
  max-width: 32rem;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: 0.75rem;
}

p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1.6;
  color: #94a3b8;
}

.name {
  margin-top: 1.5rem;
  color: #64748b;
}
