/* librsvg static site. No external fonts or scripts. */

:root {
  --text: #1a1a1a;
  --muted: #444;
  --link: #0b57d0;
  --link-visited: #5b2d8e;
  --border: #d4d4d4;
  --bg: #fafafa;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 112.5%;
}

body {
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  max-width: 42rem;
  color: var(--text);
  background: var(--bg);
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

header {
  margin-bottom: 1.75rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus {
  text-decoration: underline;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h2 {
  margin: 2rem 0 0.6rem;
  font-size: 1.2rem;
  font-weight: 650;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--link);
}

a:visited {
  color: var(--link-visited);
}

code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.9em;
}

.downloads {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.downloads li {
  margin: 0.35rem 0;
}

.note {
  color: var(--muted);
}

footer {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}
