body  {
  max-width: 100%;
  box-sizing: border-box;
  background-color: black;
  font-family: "VT323", monospace;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  color: white;
  overflow: 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;
}

.content {
  display: block;
  width: 100%;
  padding: 0;
}

.content img {
  height: 300px;
  border-style: solid;
  border-color: #3900D5; /*rich dark blue*/
  border-width: 3px;
  box-shadow: 8px 8px white;
}

.intro {
  height: 300px;
  width: 450px;
  background-image: url("imgs/orbs13.jpg");
  background-repeat: no-repeat;
  background-size: 520px 370px;
  background-position: bottom center;
  overflow: hidden;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-style: solid;
  border-color: #3900D5; /*rich dark blue*/
  border-width: 3px;
  box-shadow: 8px 8px white;
  animation: zoom 30s linear;
}

@keyframes zoom {
  from {background-size: 450px 300px;}
  to {background-size: 520px 370px;}
}

.yn {
  position: static;
  margin: 20px 40px;
  overflow: hidden;
}

.yn ul {
  list-style-type: none;
  padding: 0;
}

.yn a {
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: white;
  padding: 20px;
  transition: 0.4s;
}

.yn a:hover {
  color: #E80000;
  letter-spacing: 3px;
}

.yn li {
  display: inline-block;
}

p {
  letter-spacing: 2px;
  line-height: 18px;
  color: white;
  font-family: VT323;