/* 
  CSS Reset and Baseline Styles
  Provides consistent starting point across browsers
*/

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

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: var(--font-sans);
}

body {
  min-height: 100vh;
  background-color: var(--color-bg-body);
  font-family: var(--font-sans);
  color: var(--color-gray-900);
  line-height: 1.5;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  color: var(--clr-primary-a0);
  text-decoration: none;
  transition: color var(--transition-base);
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}
