JSFiddle - React, Tailwind, and code Playground

by MegaScience

HTML

<h1>Hello, traveler!</h1>
This text is so blurry!<br>
But since you selected it, you can read it!

CSS

html {
  color: black;
}

body {
   color: transparent;
   text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

::-moz-selection {
   color: initial;
   text-shadow: none;
}

::selection {
   color: initial;
   text-shadow: none;
}