You should make the title โless solidโ with:
background: rgba(0, 0, 0, 0.8);
or using:
opacity: 0.8;
You can read about the difference here: CSS opacity vs rgba: which one is better?
Remove color and color
Then you should put the title on the page with:
position: fixed; z-index: 100;
If you want a fixed position or
position: absolute; z-index: 100;
if you want a title scroll
And stretch the title with
width: 100%;
source share