:root {
  --bg: #0b0c10;
  --text: #e8eaed;
  --muted: #aab0b6;
  --accent: #58b6a9;
  --accent-2: #f2c6de;
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(1200px 800px at 90% -10%, rgba(88,182,169,.12), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(242,198,222,.12), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Inter, Roboto, Arial;
  text-align: center;
  padding: 20px;
}

.hello {
  max-width: 600px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6em;
  margin-bottom: 0.4em;
  color: var(--accent);
}

p {
  font-size: 1.2em;
  margin: 0.5em 0 1.2em;
}

footer {
  font-size: 0.9em;
  color: var(--muted);
}

