/* a minimalist set of CSS resets */

/* default to border-box */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* adjust typography defaults */
body {
  margin: 5rem;
  font-family: monospace;
  line-height: 1.7;
  background-color: #BEE5B0;
}

/* images and videos max out at full width */
img,
video {
  height: auto;
  max-width: 100%;
}



