body{
  background-image: url("background-4.jpg");
  background-size: 100%;
  width: 140px;
  height: 890px;
  padding: 80px;
  padding-top: 0px;
}
p{
  padding: 0px;
  color: white;
}
h3{
  font-family: "Coral Pixels";
  color: white;
}
.background{
  background-color:black;
  width: 300px;
  height: 1000px;
  padding-left: 10px;
  padding-right: 10px;
}
.dropdown {
  padding-left:20px;
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: white;
}

.dropdown-text {
  display: none;
  position: absolute;
  background-color: black;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
  text-decoration-line: underline;
  text-decoration-style: double;
  text-decoration-color: white;
}

.dropdown:hover .dropdown-text {
  display: block;
}
.right{
  display: inline;
  padding-right: 2px;
}
a{
  color: white;
}
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: red; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #e89607; 
}