/* Root variables */
:root {
  --background: #010409;
  --text: #c9d1d9;
  --muted: #8b949e;
  --accent: #58a6ff;
  --border: #30363d;
}

/* Body styling */
body {
  font-family: 'JetBrains Mono', monospace;
  background-color: var(--background);
  color: var(--text);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Main wrapper */
main {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 24px;
}

/* Section spacing */
section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Headings */
h1 {
  font-size: clamp(26px, 4vw, 38px);
  color: #ffffff;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(20px, 3vw, 28px);
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

/* Paragraph spacing */
p {
  margin-bottom: 16px;
}

/* Centered bullets with text aligned left */
ul.center-bullets {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  margin-bottom: 16px;
}

ul.center-bullets li {
  text-align: left;
  max-width: 700px;
  width: 100%;
  margin-bottom: 8px;
  list-style-position: inside;
}

/* Links */
a {
  color: var(--accent);
  text-decoration: underline;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  main {
    padding: 0 16px;
  }

  ul.center-bullets li {
    max-width: 100%;
  }
}
