/* Clears all default browser html settings */
/* 20px/1.2 corresponds to unit font being 20px, with line height being 1.2 units or 24px */
:root {font: 20px/1.2 "Arial", san-serif;} /* or html root */

body,
body * {
  margin:           unset;
  box-sizing:       unset;
  padding:          unset;
  font-size:        unset;
  color:            unset;
  text-decoration:  unset;
}

/* child not on same line as text, so don't need a gap above or below */
figure * { display: block; }