body {
  background-color:black;
}

h1 {
  color: lightpink;
}
p,
li
{
   color:lightskyblue;
 }
 .special {
   color:orange;
   font-weight:bold;
 }
 li em {
   color:mistyrose;
 }
 h1+p {
  font-size: 200%;
 }
 p span {
   color:palegreen;
 }
 a:link {
   color:pink;
   font-weight:bold;
 }
 a:visited {
   color:green;
   font-weight:bold;
 }
 a:hover{
   text-decoration:none;
 }


   