Learn Basic CSS by Building a Cafe Menu - Step 13

I’m not sure how to pass this step
I don’t know where to add the selectors. Would someone help?

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>Cafe Menu</title>
    <style>
      h1 {
        text-align: center;
      }
       h2 {
        text-align: center;
      }
      p {
        text-align: center;
      }
    </style>
  </head>
  <body>
    <main>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
      <section>
        <h2>Coffee</h2>
      </section>
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 15117.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36

Challenge: Learn Basic CSS by Building a Cafe Menu - Step 13

Link to the challenge:

Use just one selector to select h1, h2 and p.
Example:

h5, h6 {
    margin: 2px;
}

I’m stuck here as well. Is it bugged? Error message says:

Hint

You should not add a new style tag. Add the new CSS rules to the existing style tag.

But I’m not adding any new style tags…

Edit:

I had a dark mode extension enabled that was most likely causing issues, I disabled it and it finally worked.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.