
body {
  background-color: Black;
  color: white;
  font-family: Garamond;
}
h1 {
  text-align: center;
  font-size: 40px;
}

 ol {
   list-style: none;
   counter-reset: item;
 }
 li {
   counter-increment: item;
   margin-bottom: 5px;
 }
 li:before {
   margin-right: 10px;
   content: counter(item);
   background:lightblue;
   border-radius: 100%;
   color: navy;
   width: 1.2em;
   text-align: center;
   display: inline-block;
 }
a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
  font-size: 20px;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}
