/* Global typewriter/mono look */
:root {
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
  font-family: var(--mono);
  line-height: 1.6;
}

/* The page content box */
.wrap {
  width: 100%;
  max-width: 720px;
  padding: 24px;
  text-align: center;
}

/* Make headings not look like a different font */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--mono);
  font-weight: 600;
}

/* If you use <pre> for that “plain text FAQ” style */
pre {
  font-family: var(--mono);
  white-space: pre-wrap;
  margin: 0;
}

/* Optional: links vibe */
a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* Simple spacing */
header {
  margin-bottom: 16px;
}

nav {
  margin-top: 10px;
}

nav a {
  margin: 0 10px;
}

.links {
  margin-top: 18px;
}

.links a {
  margin: 0 10px;
}

footer {
  margin-top: 24px;
}
