Assemble this rule for p elements.

<html>
<head>
<link href="style.css" rel="stylesheet">
<style>p{color: teal;}
</style>
</head>
<body>
<h3>The Restaurant at the End of the Universe</h3>
<p>In the beginning the Universe was created.
</p><p>This has made a lot of people very angry and has been widely regarded as a bad move.
</p>
</body>
</html>]]>

Start with the p tag and then the opening brace. Add color: followed by teal;, and then add the closing brace.