<h1>candy</h1>
<h1 class="candy" aria-hidden="true">candy</h1>
<h1 class="candy2" aria-hidden="true">candy</h1>
<p class="terms">Font: <a href="https://www.fontsmith.com/fonts/fs-pimlico">FS Pimlico
</a> by <a href="https://www.fontsmith.com/fonts/fs-pimlico">Fontsmith</a>. <p>
html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family:'Pimlico Glow';
   background: white url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/209981/candybg-1.jpg);
  background-size: cover;
}

$size: 20px;

h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  text-align: center;
  font-weight: 400;
  width: 100%;
  text-align: center;
  font-size: 23vw;
  font-variation-settings: 'GLOW' 0;
  color: rgba(255,255,255,0.5);
  
} 

.candy { 
  font-variation-settings: 'GLOW' 1000;
  filter: invert(.7) grayscale(1);
  position: absolute;
  z-index:2;
  text-shadow: 
    20px 20px 10px rgba(255, 255, 255, 0.2), 
    16px 10px 5px rgba(255, 255, 255, 0.3), 
    8px 5px 5px rgba(138, 0, 0, 0.53), 
    4px 4px 5px white;
}

.candy2 {
  position: absolute;
  z-index:3;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    -45deg, 
    red 25%, 
    white 25%, 
    white 50%, 
    red 50%, 
    red 75.2%, 
    white 75%, 
    white);
  background-size: $size $size;
  background-position: 0 0;
  mix-blend-mode: overlay;
  animation: stripes 4s linear infinite;
  }

@keyframes stripes {
  100% { 
    background-position: $size 0, $size 0, $size 0;
  }
}


.terms {
  position: absolute;
  bottom: 0;
  right: 0;
  color: black;
  background: rgba(255,255,255,0.7);
  padding: 3px;
  font-size: 18px;
  
  a {
    color: black;
  }
}
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.