/* Element-level base styles only; module layouts remain module-owned. */

html {
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
}

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

input::placeholder,
textarea::placeholder {
  font-style: normal;
}

img,
picture,
svg,
video,
canvas {
  max-width: 100%;
}

img,
video {
  height: auto;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
