Why is this not working? (I am trying to create a div inside a div that cancels something out)
.blured {
background-color: white;
opacity: 0.1;
filter: blur(10px);
}
.text {
filter: blur(none);
!
}
<div class="blured">
<div class="text">
<center>
<h1 style="font-size: 100px">Title</h1>
</center>
<h1 style="margin-top: 100px; text-shadow: 2px 2px 2px #000000;">The text</h1>
</div>
</div>