JSFiddle - React, Tailwind, and code Playground

HTML

<h1><span>The Simpsons</span></h1>

CSS

body{
  background: url(https://static.independent.co.uk/s3fs-public/thumbnails/image/2015/11/25/12/hfuwpcupirfetn8guqtyhq7h1j02kwfij44ieojq6o8mllxfgn7mgl6khteuz2ey.png) no-repeat;
  background-size: cover;
}

h1{
  display:flex;
}

h1::before, h1::after{
  content:'';
  width:100%;
  background-color:red;
}