0 / 60 seg.

In this example, what color will the paragraphs be and why?

article p {
  color: blue;
}
article > p {
  color: green;
}
<article>
  <p>Paragraph 1</p>
  <aside>
    <p>Paragraph 2</p>
  </aside>
</article>