/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--text-1);
  background-color: var(--surface-1);
  font-weight: var(--font-weight-4);
  font-size: var(--font-size-2);
  line-height: var(--font-lineheight-3);
}

article {
  width: min(95%, var(--size-page));
  margin: 0 auto;
  /* Uses site-wide defaults for font-size and line-height */
}