* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: var(--fs-base);
  color: var(--color-text);
  background: var(--color-white);
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

h1 {
  font-weight: var(--fw-h1);
}

h2 {
  font-weight: var(--fw-h2);
}

h3 {
  font-weight: var(--fw-h3);
}

h4 {
  font-weight: var(--fw-h4);
}

h5 {
  font-weight: var(--fw-h5);
}

h6 {
  font-weight: var(--fw-h6);
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote,
.prose table {
  margin: 0 0 var(--space-lg);
}
