Add the selectors so that the webpage's background is lightGray, the heading is gray, and the paragraphs are red.

<html> <head> <style> body { background-color: lightGray; } h1 { color: grey; } p { color: red; } </style> </head> <body> <h1>Diana's Webstore</h1> <p>Welcome to the best online shop for Instapolaroid cameras!</p> </body> </html>]]>

Make sure to pick body, followed by h1, and finally p.