body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #111;
  color: #eee;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
  padding: 2rem;
}

main {
  width: min(900px, 92vw);
}

.logo {
  width: 100%;
  max-width: 820px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.tagline {
  color: #67dce8;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #cfcfcf;
  margin: 0 auto 1.2rem;
  max-width: 760px;
}

.links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

a {
  color: #f3a447;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}