I noticed that my div has a gray background with some opacity.
<div className="absolute w-full h-full top-0 left-0 right-0 bottom-0 bg-slate-500 opacity-50 z-10">
<p className="relative top-1/2 px-8 text-center heading-3 text-black">
Here is some text.
</p>
</div>
Unfortunately, the opacity does affect the text inside making it appear with less black color. How can I make sure the p tag doesn't have any opacity applied to it?