:root {
  --bg: #0f1115;
  --fg: #f5f5f5;
  --accent: #20A785;
  --muted: #9aa0a6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--fg);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.wrap {
  padding: 2rem;
  max-width: 32rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.tagline {
  font-size: 1.25rem;
  margin: 0.25rem 0;
}

.subtext {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.social a {
  color: var(--accent);
  text-decoration: none;
  margin: 0 0.75rem;
  font-weight: bold;
}

.social a:hover {
  text-decoration: underline;
}
