JSFiddle - React, Tailwind, and code Playground

by jorgeluis

HTML

<h1>
Text glow on dark background
</h1>

CSS

body {
  background-color: #002b37;
  background: transparent url(https://static.addigy.com/mac-manager-web/assets/2bc428d…/images/laptop-outline.svg) center center no-repeat; 
  color: #fff;
}

h1 {
  text-shadow: 0 0 25px rgba(7, 152, 141, 0.6);
}