/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
 
   "how to change link color." */
   
   /* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
   
  
 p{color: limegreen;
  font-size: 5px;
  text-shadow: 0px 0px 7px limegreen}  
   
   
@font-face {
  font-family: 'Terminal';
  src: url('Terminal.ttf');
  }
  

body {
  background-color: black;
  font-family: Terminal;
  font-size:5px;
}


  
div {  text-shadow: 0px 0px 7px}

    
a{
  color: limegreen;
  text-decoration: None}
  
.flicker{
  animation: flicker .01s infinite;}
  
@keyframes flicker {
  0% {opacity: 1}
  50% {opacity: 0.5}
}
  