Why is the font color blue for the paragraphs on this webpage?

The p elements inherit the color from the div elementThe p elements cannot inherit colorThe p elements inherit the color from the h3 element

The p elements inherit the color from the div element.

<html>
<head>
<style> div {color: blue;} </style>
</head>
<body>
  <h3> Daily Meditation Practice </h3>
  <div>
   <p> You have an 11-day streak! </p>
   <p> Complete a session to keep building the habit. </p>
  </div>
</body>
</html>]]>