:root {
  --color-slate-700: oklch(37.2% 0.044 257.287);
}
html.light {
  color-scheme: light;
}
html.dark {
  color-scheme: dark;
}
@supports (font-variation-settings: normal) {
  :root {
    font-family: InterVariable, sans-serif;
  }
}
body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 1.25rem;
  line-height: 1.5;
  box-sizing: border-box;
}
h1 {
  font-weight: 800;
  margin-bottom: 0;
}
p {
  color: var(--color-slate-700);
}
img,
svg,
video {
  max-width: 100%;
  display: block;
}
main {
  max-width: min(70ch, 100% - 0.5rem);
  margin-inline: auto;
}
@media (min-width: 640px) {
  main {
    max-width: min(70ch, 100% - 4rem);
  }
}
table {
  width: 100%;
}
table th {
  text-align: left;
}
td.truncate {
  max-width: 20ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
header nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
form {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
