/* This changes the color */
h2 {color:red;}
p {color:green}
/* This changes the font */
p {
  font-family: Arial;
}    
a:hover {
  color: orange;
}
a:visited {
  color: purple;
}
body {
  text-align: center;
  margin-top: 200px;
  background-color: lightpink;
}