body  {
  max-width: 100%;
  box-sizing: border-box;
  background-image: url("imgs/bg00.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: 100%;
  font-family: "consolas", "courier new";
  font-size: 16px;
  text-align: center;
  padding: 10px;
  color: white;
  overflow-x: hidden;
  }
  
body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: white;
}

body::-webkit-scrollbar-thumb {
  background-color: #3900D5;
  transition: 0.4s;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #E80000;
}
  
::selection {
  background: #E80000; /*red*/
  color: white;
}

p  {
  letter-spacing: 2px;
  line-height: 18px;
  word-break: break-all;
}

.nav {
  display: inline-block;
  margin: 50px 80px 50px 80px;
  overflow: hidden;
  background-image: url("imgs/orbs2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  width: 280px;
  height: 350px;
  padding: 40px 0;
  border-style: solid;
  border-color: #3900D5; /*rich dark blue*/
  border-width: 3px;
  box-shadow: 8px 8px white;
  }

.nav ul {
  list-style-type: none;
}

.nav li a {
  display: block;
  width: 280px;
  height: 18px;
  text-align: center;
  }

.nav a {
  text-decoration: none;
  color: white;
  padding: 20px 5px;
  transition: 0.4s;
  }

.nav a:hover {
  color: #E80000;
  letter-spacing: 3px;
  }

.footer {
  margin: 0 50px 20px 50px;
  overflow: hidden;
  background-color: black;
  border-style: solid;
  border-color: #3900D5; /*rich dark blue*/
  border-width: 3px;
  }
  
.footer ul {
  list-style-type: none;
}

.footer li {
  display: inline-block;
  padding: 18px 28px 18px 28px;
}

.footer a  {
  text-align: center;
  text-decoration: none;
  color: white;
  transition: 0.4s;
  }
  
.footer a:hover {
  color: #E80000;
  letter-spacing: 3px;
}
  
