/* Minimal global reset in the spirit of Carbon's type reset (packages/type/src/reset.ts) */
html {
  font-size: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--font-weight-regular);
  font-size: 0.875rem;
  line-height: 1.28572;
  letter-spacing: 0.16px;
  color: var(--text-primary);
  background: var(--background);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
code, pre {
  font-family: var(--font-mono);
}
strong {
  font-weight: var(--font-weight-semibold);
}
