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

Cuéntanos qué está pasando:

El texto está centrado nuevamente, por lo tanto el vínculo al archivo CSS está funcionando. Añade otro estilo al archivo que cambie la propiedad background-color a brown para el elemento body .
Tu código hasta el momento

no entiendo como ponerlo, busco en google, pongo igual y me da error.
la SUGERENCIA: Debes establecer la propiedad background-color como brown .

<!-- 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>
    <main>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
      <section>
        <h2>Coffee</h2>
      </section>
    </main>
  </body>
</html>
/* file: styles.css */

/* User Editable Region */

h1, h2, p {
  text-align: center;
}
body{ 
  backround-color: brown;
}

/* 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/109.0.0.0 Safari/537.36

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

Enlaza al desafío:

Para establecer la propiedad background-color del elemento body como brown, debes asegurarte de escribir la propiedad correctamente en el archivo CSS. En este caso, escribiste “backround-color” en lugar de “background-color”. La forma correcta sería:

Mod Edit: SOLUTION REMOVED

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.