Text as mask on white background

by Marius Jopen

HTML

<div class="container">
  <div class="text">TEXT</div>
  <img class="image" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/houston.jpg" >
</div>

CSS

.container {
  background: white;
}

.text {
  color: black;
  font-size: 20vw;
}

.image { 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;  
  mix-blend-mode: lighten;
}