// Base
*,
*::before,
*::after {
  box-sizing: inherit;
}

html, body {
  width: 100%;
  height: 100%;
}

html {
  box-sizing: border-box;
  font-size: $html-font-size;
  line-height: $html-line-height;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: $bg-color;
  color: $font-color;
  font-family: $body-font-family;
  font-weight: 400;
  font-size: $font-size;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
