
@font-face {
  font-family: 'Inter';
  src: url(./Inter/Inter-Regular-9.otf);
  font-weight: Regular;
}

@font-face {
  font-family: 'Inter';
  src: url(./Inter/Inter-Light-7.otf);
  font-weight: Light;
}

@font-face {
  font-family: 'Inter Var';
  src: url(./Inter/Inter-var-2.ttf);
}

html { font-family: 'Inter Var', 'Inter'; }

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
}

* {
  color: #ffffff;
}

*::-webkit-scrollbar {
  width: 4px;    
  /*height: 4px;*/
}
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.2);
}
*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  border-radius: 0;
  background: rgba(0,0,0,0.1);
}