I need to darken the photo, but if I do it in the following way, I also darken the text and the button. How can I dim the background without text? Any tips?
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
body, html {
height: 100%;
line-height: 1.8;
}
.bgimg-1 {
background-position: center;
background-size: cover;
background-image: url("{{ asset('img/road.jpg') }}");
height: 100vh;
filter: brightness(20%);
}
</style>
<header class="bgimg-1 w3-display-container w3-grayscale-min" id="home">
<div class="w3-display-left w3-text-white" style="padding:48px">
<span class="w3-jumbo w3-hide-small">llo facilis</span><br>
<span class="w3-xxlarge w3-hide-large w3-hide-medium">llo facilis</span><br>
<span class="w3-large">llo facilis nesciunt volupt</span>
<p><a href="" class="w3-button w3-white w3-padding-large w3-large w3-margin-top w3-opacity w3-hover-opacity-off">llo facilis nesciunt volupt</a></p>
</div>
</header>