I can not make the text "Text I want to override." stay on top of the div "textDiv" that has an image as background, please help me.
HTML
<div class="divLeft">
<img id="photo" src="photo.png">
<div class="textDiv">
<h2><i id="spaceText" class="fas fa-search"></i>Texto que quero sobrepor.</h2>
</div>
</div>
CSS
.divLeft {
width: 49.5%;
height: 949px;
float: left;
}
#spaceText {
padding-right: 16px;
}
#photo {
width: 1600px;
height: 949px;
}