html {
  scroll-behavior: smooth;
}
body {
  --pico-font-family: system-ui, sans-serif;
}
nav.nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;

  padding: 0.75rem 1.5rem;
  margin: 1rem auto;
}
main.container {
  max-width: 900px;
}
header h1 {
  margin-bottom: 0;
}
header p {
  color: var(--pico-muted-color);
}
header {
  margin-bottom: 2rem;
}
pre {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  border-radius: 12px;
  overflow-x: auto;
  background: color-mix(
    in srgb,
    var(--pico-background-color),
    var(--pico-muted-color) 8%
  );
  border: 1px solid var(--pico-muted-border-color);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
h1, h2 {
  text-align: center;
}
section {
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  scroll-margin-top: 2rem;
}
section:nth-of-type(even) {
  background: color-mix(in srgb,
    var(--pico-background-color),
    var(--pico-primary) 4%
  );
}
header#top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
header#top img {
  margin-bottom: 1rem;

  filter:
    drop-shadow(0 2px 6px color-mix(
      in srgb,
      var(--pico-color),
      transparent 75%
    ))
    drop-shadow(0 0 14px color-mix(
      in srgb,
      var(--pico-primary),
      transparent 88%
    ));
}
#support p {
  text-align: center;
}
#support a[role="button"] {
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
}
article.recommended {
  border: 1px solid var(--pico-primary);
  background: color-mix(in srgb, var(--pico-primary), transparent 96%);
}
article {
  height: 100%;
  border: 1px solid var(--pico-muted-border-color);
  border-radius: 12px;
  padding: 1.25rem;
  background: var(--pico-background-color);
  transition: transform 120ms ease, box-shadow 120ms ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
article:hover {
  transform: translateY(2px);
  box-shadow: none;
}
article header {
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
article a[role="button"] {
  width: 100%;
  text-align: center;
}
.grid {
  margin-bottom: 1.5rem;
}
a[role="button"],
button {
  border-radius: 999px;
}
details.install-instructions {
  margin-top: 1rem;
  padding: 0.75rem 1rem;

  border: 1px solid var(--pico-muted-border-color);
  border-radius: 12px;

  background: color-mix(
    in srgb,
    var(--pico-background-color),
    var(--pico-primary) 3%
  );
}

details.install-instructions summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
details.install-instructions summary small {
  color: var(--pico-muted-color);
  font-weight: normal;
  margin-left: 0.5rem;
}
.hint-link {
  display: inline;
  margin-top: 0;

  font-size: 0.85rem;
  line-height: 1.2;

  color: var(--pico-muted-color);
  text-decoration: none;

  transition: color 120ms ease;
}
.hint-link:hover {
  color: var(--pico-primary);
  text-decoration: underline;
}
