$font-stack: Helvetica, sans-serif;
$primary-color: #62c906;
h1 {
  color: $primary-color !important;
}

body {
  font-family: "Lato", sans-serif !important;
}

/* latin-ext */

html {
  scroll-behavior: smooth;
}

/* width */

::-webkit-scrollbar {
  width: 5px;
}

/* Track */

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 5px;
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 5px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: $primary-color;
}
