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

stuck here.

Tu código hasta el momento

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Cafe Menu</title>
    <link href="styles.css" rel="stylesheet"/>
  </head>
  <body>
    <div>
      <main>
        <h1>CAMPER CAFE</h1>
        <p>Est. 2020</p>
        <section>
          <h2>Coffee</h2>
        </section>
      </main>
    </div>
  </body>
</html>
/* file: styles.css */

/* User Editable Region */

body 
{
  background-color: burlywood;
}
<div>
h1, h2, p {
  text-align: center;
  width: 300px;
}

/* User Editable Region */


Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36

Challenge: Aprende CSS básico construyendo un menú de cafetería - Paso 21

Enlaza al desafío:

It requires a new div selector. In your code it is included in the h1, h2, p selector.

Requiere un selector div. En su código, se incluye en el selector h1, h2, p.