:where(*) {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--body-font);
  font-size: 1rem;
}

:where(button, input, select, textarea) {
  color: inherit;
  font: inherit;
}

:where(input, textarea) {
  border-radius: 0;
}

textarea {
  resize: none;
}

:where(input, select, textarea, button, a):focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

:where([hidden]) {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
