html,
body {
  position: relative;
  width: 100%;
  height: 100%;
}

body {
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, sans-serif;
}

* {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: -moz-none;
}

/* Style scrollbars on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: red #222;
}

/* Style scrollbars in Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

*::-webkit-scrollbar-track {
  background: #222;
}

*::-webkit-scrollbar-thumb {
  color: red;
  background-color: red;
  border-radius: 5px;
  border: 3px solid red;
}
*::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0);
}
