/**
 * Basic typography style for copy text
 */

::-webkit-scrollbar {
  //display: none;
}

html,
body {
  height: 100%;
  margin: 0
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: $body-font-family;
  font-size: $regular-font-size-global;
  color: $body-font-color;
}

hr {
  height: 1px !important;
}