body{
  margin: 0px;     /* ADD STYLE ! */
  height: 100vh;
  background-image:url(bar.png);
  background-position: top;
  background-size: 100% 0.75%;
  background-repeat: no-repeat;
  background-color: rgb(192, 0, 255, 1.0);
}
h1 {
  color: rgb(255, 255, 0, 1.0);
  font-size: 4vw;
}
h2 {
  color: rgb(255, 255, 0, 1.0);
  font-size: 3.5vw;
}
p {
  color: rgb(255, 255, 0, 1.0);
  font-size: 3vw;
}
br {
   margin: 0.5vh;
}
/* unvisited link */
a:link {
  color: rgb(255, 255, 0, 1.0);
font-size: 2.5vw;
}
/* visited link */
a:visited {
  color: rgb(255, 255, 0, 1.0);
font-size: 2.5vw;
}
/* mouse over link */
a:hover {
  color: rgb(255, 255, 0, 1.0);
font-size: 2.5vw;
}
/* selected link */
a:active {
  color: rgb(255, 255, 0, 1.0);
font-size: 2.5vw;
}

::selection {
  color: #FFFF00;
  background: #600080;
}
/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #600080 #300040;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #300040;
}

*::-webkit-scrollbar-thumb {
  background-color: #600080;
  border-radius: 0px;
}