/* https://css-fundamentals.kevinpowell.co/1-essentials/reset */

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