:root {
  --brand-color: #030303;
  --forge-font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --forge-bg: #f8fafc;
  --white-color: #fff;
  --border-color: #e2e8f0;
  --base-font: 1rem;
}

body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--brand-color);
  color: #ffffff;
}
img {
  width: 100%;
  max-width: 450px;
}

.container {
  max-width: 50%;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

header {
  margin-bottom: 2rem;
  text-align: center;
}

header h1 {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.5rem;
  color: #555;
}

section {
  margin-top: 3rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

section p,
ul {
  font-size: 1.2rem;
  line-height: 1.6;
}

pre {
  background: #eee;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  font-size: 1.1rem;
}

footer {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem 0;
  color: #888;
  font-size: 1rem;
}


@media only screen and (max-width: 600px) {
  .container {
    max-width: 80%;
  }
}