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

* {
  padding: 0;
  margin: 0;
  font: inherit;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
textarea,
button,
select {
  font: inherit;
}

html {
  /* font-size: 10px; */
  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;
  /* Does NOT work in all browsers */
  scroll-behavior: smooth;
  /* color-scheme: dark light; light or dark mode */
}

body {
  min-height: 100vh;
  font-family: sans-serif;
  line-height: 1;
  font-weight: 400;
  font-size: 1.6rem;
  color: #212529;

  /* ONLY WORKS IF NOTHING ABSOLUTELY POSITIONED IN RELATION TO BODY */
  overflow-x: hidden;
}
