Learn CSS Foundations Projects - CSS Foundations Exercise E

Tell us what’s happening:

he usado selectores de hermanos e hijos para resolver el problema pero me sigue dando error, sera que alguien puede ayudarme quizas los use mal

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Descendant Combinator</title>
    <link rel="stylesheet" href="styles.css">
  </head>
  <body>
    <div class="container">
      <p class="text">This should be styled.</p>
    </div>
    <p class="text">This should be unstyled.</p>
    <p class="text">This should be unstyled.</p>
    <div class="container">
      <p class="text">This should be styled.</p>
      <p class="text">This should be styled.</p>
    </div>
  </body>
</html>
/* file: styles.css */
div p{
  background-color:yellow;
}
div, p{
  color:red;
  font-size:20px;
  text-align:center;

}

Your browser information:

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

Challenge Information:

Learn CSS Foundations Projects - CSS Foundations Exercise E

All the styles should be inside the single div p descendant selector you have. You are not asked to use a selector list div, p.