* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* CHANGE SCROLLBAR DECORATION */
::-webkit-scrollbar {
  width: 5px;
  background: #000;
  overflow-y: scroll;
}

::-webkit-scrollbar-thumb {
  background-color: #fff;
  height: 300px;
  border-radius: 50px;
}

body,
html {
  user-select: none;
  background: #000;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

/*.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  display: flex;
}

.bar {
  width: 10vw;
  height: 105vh;
  background-color: #000;
}

.counter {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: flex-end;
  z-index: 100;
  color: #fff;
  font-size: 20vw;
  font-family: 'carpenter';
}*/