/* =========================================
   BASE STYLES (Mobile First)
   ========================================= */

/* Use border-box for easier sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove default margins for a clean slate */
body, h1, h2, h3, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: var(--line-height-paragraph);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-paragraph);
  background-color: var(--color-background-100);
  color: var(--color-gray-900);
}

/* Make images/media easier to work with */
img, picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}
