/* 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." */

.top-right-text {
  position: absolute; /* Removes text from normal flow */
  top: 0px;             /* Distance from the top */
  right: 100px;           /* Distance from the right */
}

    h1, h2, h3, h4 {
  text-shadow:0px 0px 5px purple, 1px 1px #D8B9FF,2px 2px #6F17FF
  }
  p, li {
  text-shadow:1px 1px #009966, 0px 0px 2px #FFFFFF
  }
  ul {
  list-style-type: none; 
  margin: 0;            
  padding: 0;           
  }
  h1 {
  letter-spacing: 7px
  }

/*unvisited link*/
a:link {
  color: lightblue;
}

/* visited link */
a:visited {
  color: #f8d3f8;
}

/* mouse over link */
a:hover {
  color: pink;
}

/* selected link */
a:active {
  color: grey;
}

body {
  text-align: center;
  background-image: linear-gradient(to right, #006666, #120022, #006666);
  background-position: center bottom;
  background-color: #006666;
  color: #FFFFFF;
  font-family: "Courier New", Courier, monospace;
}