/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("https://lameanimeboy.neocities.org/ObanPlaid_forweb_fog_38dfc56e-6737-48df-929c-42901c90fa82_720x.png");
  background-color: white;
  color: rgb(102, 51, 0);
  font-family: 'px_sans_nouveaux';
  font-size: 12px;
  text-shadow: 0 0 3px white, 0 0 5px #153f94;
}
/* unvisited link */
a:link {
  color: rgb(137, 171, 205);
}

/* visited link */
a:visited {
  color: rgb(148, 130, 76);
}

/* mouse over link */
a:hover {
  color: rgb(78, 106, 193);
}

<style>
  #scroll {
    width: 334px;
    height: 250px;
    font-size: 2em;
    overflow-y: scroll;
    float: left;
    background-image: url("https://zanarkand.neocities.org/backgrounds/red1.jpg");
    border: 5px groove rgb(153, 153, 153);
    background-color: rgb(255, 255, 255);
  }
 
  ::-webkit-scrollbar {
    width: 16px;
    height: 10px;
  }
 
  ::-webkit-scrollbar-thumb {
    background-color: #fff;
    background-image: url(https://i.imgur.com/Qtm9Z60.png);
    border-top: 1px solid #bdbdbd;
    border-left: 1px solid #bdbdbd;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
  }
 
  ::-webkit-scrollbar-track {
    background-color: #fff;
    background-image: url(https://i.imgur.com/IGXGYKz.png);
  }
 
  ::-webkit-scrollbar-button:vertical:increment {
    background-image: url(https://i.imgur.com/WhC8iy3.png);
    width: 14px;
    height: 16px;
    border-top: 1px solid #bdbdbd;
    border-left: 1px solid #bdbdbd;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
  }
 
  ::-webkit-scrollbar-button:vertical:decrement {
    background-image: url(https://i.imgur.com/fQ18mrR.png);
    border-top: 1px solid #bdbdbd;
    border-left: 1px solid #bdbdbd;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    width: 14px;
    height: 16px;
  }
</style>