* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #0f0f10;
  color: #f5f5f5;
}

main {
  text-align: center;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

nav {
  margin-top: 1.5rem;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

nav a {
  color: #a8a8ff;
  text-decoration: none;
  font-size: 1.1rem;
  text-align: center;
}

nav a:hover {
  text-decoration: underline;
}
