#background {
background-color: red;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
#text {
position: relative;
z-index: 1000;
background-color: black;
color: #fff;
text-align: center;
}
<div id="background"></div>
<div id="text">Текст</div>