Between the `style` tags, give the `p` elements `font-size` of `16px` . Browser and Text zoom should be at 100%

<style>

.red-text {

color: red;

font-size: 16px;

zoom:100%;

}

</style>

<h2 class=“red-text”>CatPhotoApp</h2>

<main>

<p class=“red-text”>Click here to view more <a href="#">cat photos</a>.</p>

it is not working, that is my code