I am using CSS filters to create a blurry background and have text lay on top. But when I try, the blurry effect is taking place on the text as well. How can I avoid this and keep the text non-blurry?
HTML
<div id="intro">
<h1 id="tagline">A dinner to remember...</h1>
</div>
CSS
#intro{
background:url(../img/meal.jpg) no-repeat;
background-size: cover;
height: 500px;
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
}
#tagline {
text-align: center;
font-family: 'Lobster', cursive;
position: relative;
font-size: 4em;
color: #fff;
}
screenshot: http://d.pr/i/fAFe