*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--ov-font-sans);
  font-size: var(--ov-fs-body);
  color: var(--ov-text);
  background: var(--ov-bg);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  line-height: var(--ov-lh-normal);
}

a {
  color: var(--ov-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img, svg {
  display: block;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ov-font-display);
  font-weight: var(--ov-w-bold);
  line-height: var(--ov-lh-snug);
  letter-spacing: var(--ov-track-tight);
  color: var(--ov-text);
}
