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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #1a1a1a;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

p {
  color: #888;
  margin-bottom: 1.5rem;
}

nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

nav a {
  color: #6ab0f3;
  text-decoration: none;
}

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