I need help figuring out how to blur the background image of my jumbotron without blurring the text on top.
<b-container fluid class="text-center">
<div>
<b-jumbotron class="jumbotron">
<p style="font-size: 80px; font-weight: 700">
Welcome to Janes Electrical
</p>
<p style="font-size: 40px; font-weight: 700">
Home Security and Electrical Experts
</p>
<p style="font-size: 40px; font-weight: 700">License number: 905</p>
</b-jumbotron>
</div>
</b-container>
This is the CSS I'm using:
.jumbotron {
color: rgb(255, 255, 255);
filter: blur(5px);
padding-top: 200px;
margin-bottom: 50px;
height: 500px;
background-image: url("../assets/Test2.jpeg");
}