JSFiddle - React, Tailwind, and code Playground

by Alex Slepenkov

HTML

<h1 class="glow">123</h1>
<h1 class="shadow">123333</h1>

CSS

body,html{
  background:black;
}
.glow {
  color: #ffffff;
  text-shadow:0 0 40px #5fd1ff;
  text-transform: uppercase;
  font-weight: 200;
}
 
.glow a {
  color: #ffffff;
  transition: all 0.5s;
}
 
.glow a:hover {
  text-decoration: none;
  opacity: 0.5;
}