h1 {
  background-color: beige;
}

body {
  color: white;
  background-color: black;
  font-size: 22px;
  font-family:cursive;
}

ol > li{
  list-style-type:lower-greek
}

/* unvisited link */
a:link {
  color: purple;
}
  
  /* visited link */
a:visited {
  color: red;
}
  
  /* mouse over link */
a:hover {
  color: white;
}
  
  /* selected link */
a:active {
  color: blue;
}

table {
    margin: 10px;
    border: 5px solid white;
    border-collapse: collapse;
}

tr, th, td {
  border: 1px solid red;
  padding: 10px;
}

th{
  text-align: left;
}

tr:nth-child(even){
  background-color: grey;
}