:root {
  --bg: #1a1a1a;
  --text: #eeeeee;
  --muted: #666;
  --primary: #4f46e5;
  --border: #000000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container.narrow {
  max-width: 700px;
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: #232224;
}

/*.hero {
  min-height: 7vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero p {
  max-width: 600px;
  color: var(--muted);
}*/

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: gray;
  color: inherit;
  text-decoration: none;
}

.card h3 {
  margin-top: 0;
}
