body {
  background-color: black;
  color: red;
  font-family: timesnewroman;
}
a:link {
  color: orange;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: gold;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}
::selection {
  color: white;
  background: orange;
  
}::-webkit-scrollbar {
  width: 20px;
}
::-webkit-scrollbar-thumb {
  background-image: linear-gradient(tomato, red); 
  border-width: thick;
  border-style: outset;
  border-color: darkred;
}

::-webkit-scrollbar-thumb:hover {
  background-image: linear-gradient(gold, orange); 
  border-width: thick;
  border-style: outset;
  border-color: chocolate;
}
::-webkit-scrollbar-track {
  background-image: linear-gradient(black, red, black); 
}
::-webkit-scrollbar-button{
  background: red; 
  background-image: url("https://savingsuckerfaces.neocities.org/site%20graphics/o.jpg");
  background-size: cover;
}