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

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--ink-black);
  background-color: var(--ink-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

a {
  color: var(--ink-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--ink-accent-hover);
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
