Using the body tag is one of the easiest ways to add overlapping rules on elements. We'll learn about the other ways soon.

<html> <head> <style> body { background-color: cornSilk; color: grey; } h1 { font-family: Helvetica; } p { font-weight: bold; font-family: cursive; } </style> </head> <body> <h1>Venn Diagram Generator</h1> <p>Learn how to create your own personal Venn Diagrams</p> <img src="https://mimo.app/r/venn.png"> </body> </html>]]>