/* Reset a little */
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
  padding: 2rem;
}

/* Headline */
h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #111827;
  text-align: center;
}

/* Subtext */
div {
  text-align: center;
  font-size: 1.1rem;
  color: #374151;
}

/* Links list */
ul {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 500px;
}

ul li {
  background: white;
  margin: 0.5rem 0;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Links */
a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Inline code styling */
code {
  background: #f3f4f6;
  padding: 0.15rem 0.35rem;
  border-radius: 0.25rem;
  font-size: 0.95em;
}
