body {
  cursor: url('graphics/redcursor.png'), auto;
}

a {
  cursor:  url('graphics/redcursorhover.png'), auto;
}

.waiting {
  cursor:  url('graphics/redcursorloading.png'), auto;
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: url('graphics/blackbg.jpg');
  background-size: cover;
}

::-webkit-scrollbar-thumb {
  background: #a10b00;
  background-size: cover;

  border-top: 1px solid #e33c30;
  border-bottom: 1px solid #6b0700;

  border-left: 1px solid #e33c30;
  border-right: 1px solid #8c0900;

  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  filter: brightness(1.2);
}

::selection {
  background: red;
  color: black;
}