<h2> Styling the body of the website </h2>
<p>
  Now we added a nice background color
</p>
html, body {
  background-color: aqua;
  
}
p{
  font-size: 130%;
  font-family: cursive;
  color: blue;  
}
h2{
  font-size:35px;
  font-family: Arial;
  color: orange;
  
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.