http://codepen.io/apswak/pen/qNQxgA
Has anyone encountered issues with nesting elements inside a header with a background image? I'm facing the problem where every element I place inside gets pushed above the background image. Is there a more effective way to achieve this?
<div class="header">
<h1>Lorem ipsum random stoof</h1>
<h3>Master.</h3>
</div>
.header {
background-color: #222;
background: url('https://snap-photos.s3.amazonaws.com/img-thumbs/960w/825303XHAE.jpg')50% 100px no-repeat;
background-size: cover;
height: 700px;
margin-top: -50px;
-webkit-filter: blur(1px);
-moz-filter: blur(1px);
-o-filter: blur(1px);
-ms-filter: blur(1px);
filter: blur(1px);
}