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

body {
  font-family: var(--ml-font-family-sans);
  font-size: var(--ml-font-size-base);
  line-height: var(--ml-font-line-height-normal);
  color: var(--ml-color-text-primary);
  background: var(--ml-color-surface-cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ml-font-family-serif);
  font-weight: var(--ml-font-weight-medium);
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--ml-motion-duration-fast) var(--ml-motion-ease-standard);
}

a:hover {
  opacity: 0.7;
}

::selection {
  background: var(--ml-color-brand-orange);
  color: var(--ml-color-text-inverse);
}

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