Tobi Next thing, how to create a background color for Welcome Hero subtitle "only" ?
Ok i just made a similar welcome hero:

And here the CSS codes:
As you know, for Background you have to use background in css, So:
.IndexPage .WelcomeHero {background-image: url(https://example.com/img.jpg); background-position: center;}
Then for title, you have to use gradient background. use this code:
.IndexPage .WelcomeHero .containerNarrow h2.Hero-title {
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(1,0,21,1) 59%, rgba(0,0,0,0) 100%);
max-width: max-content;
margin: 0 auto;
padding: 5px 20px;
}