@layer base {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }

  html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: clip;
  }

  body {
    min-height: 100dvh;
    font-family: var(--font-family-body);
    font-size: var(--font-size-md);
    line-height: 1.7;
    color: var(--color-black);
    background: var(--color-cream);
  }

  main {
    display: block;
    background: var(--page-bg, transparent);
  }

  @media (max-width: 768px) {
    body {
      font-size: 16px;
    }
  }

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

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

  a {
    color: inherit;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 600;
    line-height: 1.1;
  }

  h1 {
    font-size: var(--font-size-4xl);
  }
  h2 {
    font-size: var(--font-size-2xl);
  }
  h3 {
    font-size: var(--font-size-xl);
  }
  h4 {
    font-size: var(--font-size-lg);
  }
  h5 {
    font-size: var(--font-size-md);
  }
  h6 {
    font-size: var(--font-size-md);
  }
}

figure {
  margin: 0;
}
