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

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

.wrapper {
  text-align: center;
  max-width: 420px;
  padding: 2rem;
}

h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

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

code {
  background: #eee;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-family: "SF Mono", Consolas, monospace;
  font-size: 0.9rem;
}

button {
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #1d4ed8;
}
