Crie uma página de flyer para evento - Crie uma página de anúncio de evento

Conte o que está acontecendo:

Já fiz o código, refiz, tentei fazer o teste em outros dispositivos, tentei com ajuda da I.A e mesmo assim não consegui. aparece que tudo que eu tento estilizar na seção do CSS fica com erro

Seu código até agora

<!-- 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>Build an Event Flyer Page</title>
</head>

<body>
 <header>
  <img src="https://cdn.freecodecamp.org/curriculum/labs/event.jpg" alt="Varal com bandeiras tipo festa junina">

  <h1>Festa junina</h1>
   </header>
   <hr>
  <main>

    <section> 
<h2>
OI
</h2>
    </section>

    <section> 
      <h2>
  OI
</h2>
    </section>

  </main>

</body>

</html>
/* file: styles.css */
body {


  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100vw;
  min-height: calc(100vh - 100px);

}

hr {

width:80%;

}

section {

width: 60%;

}

Informações do seu navegador:

User Agent é: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36

Informações do desafio:

Crie uma página de flyer para evento - Crie uma página de anúncio de evento

Link do GitHub: i18n-curriculum/curriculum/challenges/portuguese/blocks/lab-event-flyer-page/66e45c8140f9fda5c105ae26.md at main · freeCodeCamp/i18n-curriculum · GitHub

Welcome to the forum @mchxxl7,

Did you link your stylesheet to your html file?

Happy coding