/* unvisited link */
a:link {
    color: blue;
  }
  
  /* visited link */
  a:visited {
    color: darkmagenta;
  }
  
  /* mouse over link */
  a:hover {
    color: rgb(31, 221, 31);
  }
  
  /* selected link */
  a:active {
    color: whitesmoke;
  }
body {
    background-color: rgb(178, 168, 238);
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    
}
h1 {
    background-color: white;
    color: black;
}
div {
    background-color: lightblue;
  }
p {
    background-color: rgb(171, 217, 238);
  }
ul{
    list-style-type: circle; 
}
table{ 
    border-collapse: collapse;
    margin: 10px;
    padding: 10px;
    outline: yellow solid 5px;
}
th, td { 
    text-align: left;
}
tr{
    background-color: rgb(57, 230, 230);
}
tr:nth-child(even) {
    background-color: rgb(11, 126, 235);
    color: white;
}
table, th, td {
    border: 1px solid white;
    padding: 10px;
}