When putting a filter on the image inside the ID I created both background and text get filtered, when my intention is just to lower the brightness of the background
I've tried making spererate classes and ID, but nothing worked the way I wanted it to.
HTML
<section id="showcase">
<div class="container">
<h1>Hello</h1>
<p>I need to type something in here</p>
</div>
</section>
CSS
#showcase{
min-height: 400px;
background:url('../img/writing-code33.jpg');
filter: brightness(20%);
background-size: cover;
text-align: center;
color: #ffffff;
}
/*#showcase background{
filter: brightness(20%);
}*/
#showcase h1{
margin-top: 100px;
font-size: 55px;
margin-bottom: 10px;
}