/* 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." */
body {
  background-color: black;
  }
  
  h1 {
    color: #ffa900;
    font-family: "Lucida Console", Lucida, monospace;
    font-size: 30px;
    letter-spacing: 4px;
    text-shadow: 0 0 10px #ffa900, 0 0 50px #ffa900, 0 0 55px #ffa900, 0 0 70px #ffa900, 0 0 75px #ffa900, 0 0 90px #ffa900, 0 0 100px #ffa900;
    text-align: center;
}

  h2 {
    color: #ffa900;
    font-family: "Lucida Console", Lucida, monospace;
    font-size: 20px;
    letter-spacing: 4px;
    text-align: center;
}

  h3 {
    color: #ffa900;
    font-family: "Lucida Console", Lucida, monospace;
    font-size: 16px;
    letter-spacing: 4px;
    text-align: center;
}
  
p {
    color: #ffa900;
    font-family: "Lucida Console", Lucida, monospace;
    font-size: 14px;
    letter-spacing: 2px;
    text-shadow: 0 0 5px #ffa900, 0 0 10px #ffa900, 0 0 25px #ffa900, 0 0 35px #ffa900, 0 0 45px #ffa900, 0 0 55px #ffa900, 0 0 65px #ffa900;
    text-align: center;
}

/* Red border */
hr {
  border-top: 0.5px dotted #ffa900;
  border-radius: 10px;
}

/* unvisited link */
a:link {
  color: antiquewhite;
  text-shadow: 0 0 5px antiquewhite, 0 0 10px antiquewhite, 0 0 25px antiquewhite, 0 0 35px antiquewhite, 0 0 45px antiquewhite, 0 0 55px antiquewhite, 0 0 65px antiquewhite;
}

/* visited link */
a:visited {
  color: antiquewhite;
  text-shadow: 0 0 5px antiquewhite 0 0 10px antiquewhite, 0 0 25px green, 0 0 35px antiquewhite, 0 0 45px antiquewhite, 0 0 55px antiquewhite, 0 0 65px antiquewhite;
}

/* mouse over link */
a:hover {
  color: antiquewhite;
  text-shadow: 0 0 5px antiquewhite, 0 0 10px antiquewhite, 0 0 25px antiquewhite, 0 0 35px antiquewhite, 0 0 45px antiquewhite, 0 0 55px antiquewhite, 0 0 65px antiquewhite;
}

/* selected link */
a:active {
  color: antiquewhite;
  text-shadow: 0 0 5px antiquewhite, 0 0 10px antiquewhite, 0 0 25px antiquewhite, 0 0 35px antiquewhite, 0 0 45px antiquewhite, 0 0 55px antiquewhite, 0 0 65px antiquewhite;
}

ul {
  list-style: ">" inside;
  padding: 20px;
  color: #ffa900;
  margin: 5px;
  font-family: "Lucida Console", Lucida, monospace;
  font-size: 12px;
  letter-spacing: 4px;
  text-align: center;
}