html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--color-canvas);
  color: var(--color-ink);
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-sans);
  font-size: var(--font-size);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: var(--letter-spacing);
  line-height: var(--line-height-relaxed);
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--color-ink-muted);
  text-decoration: none;
  transition: color 0.15s ease;

  &:hover {
    color: var(--color-ink);
  }
}

b, strong {
  font-weight: 600;
  color: var(--color-ink);
}

i, em {
  font-style: italic;
}

img, video {
  height: auto;
  max-width: 100%;
  width: auto;
}
