Change the Font Size of an Element help me

Tell us what’s happening:

Your code so far

<style>
  .red-text {
    color: red;
  }pfont-size16px
</style>

<h2 class="red-text">CatPhotoApp</h2>

<p class="red-text">Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>

<p2 {font-size:16px;}>Purr jump eat the grass rip the couch scratched.</p2>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/change-the-font-size-of-an-element

<style>
  .red-text {
    color: red;
  }pfont-size16px  /* 1 */
</style>

<p2 <!-- 2 --> {font-size:16px;} <!-- 3 --> >
  1. Make sure to follow the proper format for CSS rules. There’s an example in the instructions:
h1 {
  font-size: 30px;
}
  1. There is no p2 element in HTML.
  2. This is unnecessary.

Re-read the instructions carefully and take a look at the code that’s already written for you.