JSFiddle - React, Tailwind, and code Playground

by khamer

HTML

<div class="test">
  <h1>Hello World</h1>
</div>

SCSS

.test {
  position: relative;
  background: #fff url(https://www.imarc.com/img/site/work/work_starwood.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50vw 50%;
  height: 80vh;
  
  h1 {
    background: inherit;
    background-size: cover;
  background-repeat: no-repeat;
  background-position: 50vw 50%;
    position: absolute;
    font-size: 4rem;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: invert(1) grayscale(1) contrast(1);
    top: 33%;
    left: 0;
    right: 0;
    text-align: center;
  }
}