/* a minimalist set of CSS resets */
html,body{
  height:100%;
}
/* default to border-box 
html {
  box-sizing: border-box;
  font-size: 18px;
}

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

/* adjust typography defaults 
body {
  margin: 1rem;
  font-family: sans-serif;
  line-height: 1.5;
}

/* images and videos max out at full width */