/* ================================
   Browser Reset & Normalization
   ================================ */

* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
}

/* ================================
   Headings & Text
   ================================ */
h1 { font-size: var(--fs-900); }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-700); }
h4 { font-size: var(--fs-600); }
h5 { font-size: var(--fs-500); }
h6 { font-size: var(--fs-400); }

p {
  font-size: var(--fs-500);
  color: var(--color-text-secondary);
}

/* ================================
   Links
   ================================ */

a {
  color: inherit;
  text-decoration: none;
}


/* ================================
   Forms
   ================================ */

input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: inherit;
}

input,
textarea {
  border: none;
  padding: 0;
  margin: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* ================================
   Images
   ================================ */

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ================================
   Structural
   ================================ */

main {
  display: block;
}


