The text color of the first paragraph must be the same color as defined by the#firstP selector.
You cannot delete or change existing styles, only add to them.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

index.html

<!DOCTYPE html>
<html>
  <head>
    <title>New York</title>
    <style>
      body {
        margin: 0;
      }
      p {
        color: #14599d;
      }
      #firstP {
        color: blueviolet;
      }
    </style>
  </head>
  <body>
    <p id="firstP" style="color: red;">New York City, officially the City of New York, historically New Amsterdam, city and port located at the mouth of the Hudson River, southeastern New York state.</p>
    <p>It is the largest and most influential American metropolis, encompassing Manhattan and Staten islands.</p>
  </body>
</html>