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

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: #1a1a2e;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  max-width: 40rem;
  padding: 2rem;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #f0f0f0;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  padding: 0.3rem 0;
}

a {
  color: #7ec8e3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
