How do I darken the background image without this affecting my text color?
div {
display:block;
background:url('http://placehold.it/500x500') 0 0 no-repeat;
background-color:rgba(0, 0, 0, 1);
background-size:cover;
height:500px;
width:500px
}
<div>
<h1>Hello, it's me!</h1>
</div>