/* Removes Browser Default */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Forces the browser to include an element's padding and borders inside its specified width and height */
}
html {
  font-size: 16px;
}
body {
  background-color: var(--background-color);
}