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

Cuéntanos qué está pasando:
My code is not working, even though I have the nested div inside the body. It keeps telling me that it’s not the case, and I don’t know why. I’ve tried different approaches, but indentation doesn’t seem to be the issue either
Tu código hasta el momento

CAMPER CAFE

Est. 2020

Coffee

<!-- 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>

<!-- User Editable Region -->

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

<!-- User Editable Region -->

</html>
/* file: styles.css */
body {
  background-color: burlywood;
}

h1, h2, p {
  text-align: center;
}

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/113.0

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

Enlaza al desafío:

Hola @david.d.belenom !

No veo errores en tu código; inclusive probe ingresar la solución con la misma respuesta y me devolvio el mensaje de solución correcta. ¿Probaste realizar el ejercicio desde un navegador web diferente?