I am trying to style 2 specific elements within a div that has the class promotion, setting their text color to white.
.promotion h1, p {
color: #FFF;
}
<section>
<article class="promotion grid-col-span-3 text-center">
<h1>Spring Sale!</h1>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Veniam voluptatibus laboriosam debitis
dolor aut perspiciatis necessitatibus facilis expedita eligendi, accusantium saepe ut dolorum beatae
asperiores? Sit velit soluta asperiores perferendis.</p>
</article>
</section>
However, the current styling is affecting elements outside the div with the class promotion as well.