JSFiddle - React, Tailwind, and code Playground

by Alexus fox

HTML

<div class="lex">
  <div class="overlay">
    <div class="text">
      CAP that
    </div>
  </div>
</div>

CSS

.lex {
   height: 100%;
   min-height: 20em;
   padding: 2em;
   background: -webkit-linear-gradient(bottom left, teal 0%, teal 50%, purple 100%);
 }
 
 .overlay {
   background: rgba(255, 255, 255, 0.4);
 }
 
 .text {
   padding: 1em;
   font-family: 'Arial Black';
   font-size: 5em;
   text-align: center;
   background: -webkit-linear-gradient(bottom left, green 0%, blue 50%, red 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
 }