* {
  -webkit-touch-callout: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

/* Customize website's scrollbar like Mac OS */

/* total width */

body::-webkit-scrollbar {
  background-color: #fff;
  width: 16px;
}

/* background of the scrollbar except button or resizer */

body::-webkit-scrollbar-track {
  background-color: #fff;
}

/* scrollbar itself */

body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 16px;
  border: 5px solid #fff;
}

/* set button(top and bottom of the scrollbar) */

body::-webkit-scrollbar-button {
  display: none;
}

body:hover::-webkit-scrollbar-thumb {
  background-color: rgba(191, 191, 193, 0.5450980392);
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a5;
}

/*# sourceMappingURL=styles.css.map*/