Help make the picture opacity 0.6 so that the background-color is visible. Here is an example of what I need to do.
Html
<section class="banner"> <div class="container"> <div class="item"> <h1>We're an Independent Design and <span>Development</span> Agency</h1> </div> </div> </section> Css
.banner{ background: rgba(0,0,0, 0.6) url("../images/banner.jpg") no-repeat; background-size: cover; } 