*,
*::before,
*::after {
  /* Ensures that an element's width and height include padding and border but exclude margins */
  box-sizing: border-box;
  /* Removes the default margin applied to certain elements (e.g., <body>, <h1>, <p>) */
  margin: 0;
  /* Removes default padding applied by browsers (e.g., <ul>, <ol>) */
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  font-size: 8px;
}

body {
  font-size: 2rem;
}