/* Basic reset */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #111;
  color: #eee;
}

/* Center content */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 2rem;
}

/* Headline styling */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffcc00;
}

/* Paragraph styling */
p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  max-width: 600px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
}

