:root {
  --body-color: hsl(220deg 13% 25%);
}

body {
  font-family: 'Poppins', 'Signika', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  background-color: var(--body-color);
  margin: 0;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* .wavesurfer-region {
  box-sizing: border-box;
} */

html {
  background-color: var(--body-color);
  font-size: 100%;
}

@media (max-width: 600px) {
  html {
    font-size: 90%;
  }
}

a {
  text-decoration: none;
  cursor: default;
}

/* Track */
::-webkit-scrollbar-track {
  background: black;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #373737;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
::-webkit-scrollbar {
  width: 3px;
}
