Aprende CSS básico construyendo un menú de cafetería - Paso 12

Cuéntanos qué está pasando:
Describe tu problema en detalle aquí.
En este problema me indica que centre los elementos h2 y p añadiendo un nuevo selector de tipo para cada uno en el elemento style existente en la cual lo coloco, pero me sale error, no sé si será error mio o del sistema que manejo.

Tu código hasta el momento

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>Cafe Menu</title>

<!-- User Editable Region -->

    <style>
      h2{
        text-align:center;
      }
      p{
        text-align:center;
      }
    </style>

<!-- User Editable Region -->

  </head>
  <body>
    <main>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
      <section>
        <h2>Coffee</h2>
      </section>
    </main>
  </body>
</html>

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36

Desafío: Aprende CSS básico construyendo un menú de cafetería - Paso 12

Enlaza al desafío:

You added the new h2 and p rule sets correctly. But I don’t think the instructions asked you to delete the h1 rule set that was already there. If you put that back then you will pass.