body {
  background-color: #181a1b;
  color: white;
  margin: 0;
  padding: 0;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

/* #indextitle {
  display: none;
} */

#indextitle:before {
  content: "hello world!";
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f100;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* unvisited link */
a:link {
  color: rgb(0, 255, 242);
}

/* visited link */
a:visited {
  color: rgb(148, 129, 255);
  ;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}

a {
  text-decoration: none;
  font-size: 1em;
  /* 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  display: inline-block; */

}

hr~a {
  display: inline-block;
}

hr {
  height: 1px;
  background-color: #525252;
  border: none;
}