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

  .centered-list {
    text-align: center;
    list-style-position: inside;
    padding: 0;
  }

body {
  background-color: #0f0e0e;
  color: 	#ffe135;
  font-family: Helvetica, Verdana;
  text-align: center;
}

/* Normal unvisited link */
a {
    color: 	#ed872d;
    text-decoration: none; /* removes underline */
}

/* Visited link */
a:visited {
    color: #b2ffff;
    text-decoration: line-through;
}

/* Mouse over link */
a:hover {
    color: #ffb7c5;
    text-decoration: underline;
}

/* When link is being clicked */
a:active {
    color: #f7e7ce; /*champagne colour*/
}

/* When link has focus (keyboard navigation) */
a:focus {
    color: #f7e7ce;
    outline: 2px solid #f7e7ce;
}