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

body,
html {
  height: 90%;
  font-family: "Inter", system-ui, sans-serif;
  background-color: #f9fafb;
  color: #111827;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 600px;
}

h1 {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.4;
}

footer {
  margin-top: 2rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  p {
    font-size: 1.125rem;
  }
}
