Hello - am trying to figure out how to stretch the pattern image across the page and superpose the H1 Dasmoto title on it. I am close but it seems I can’t move the text on the image. This is what I have so far in CSS/html
h1 {
font-size:100px;
font-weight: bold;
color:khaki;
text-align: center;
}
.banner {
width: 100%;
height: 10%;
position: fixed;
left: 0px;
top: 0px;
font-size:100px;
z-index: -1; /* Ensure div tag stays behind content; -999 might work, too. */
}
html: