JSFiddle - React, Tailwind, and code Playground

by the wazz

HTML

<p class="blur">
    Now that we know who you are, I know who I am. I'm not a mistake! It all makes sense! In a comic, you know how you can tell who the arch-villain's going to be? He's the exact opposite of the hero. And most times they're friends, like you and me! I should've known way back when... You know why, David? Because of the kids. They called me Mr Glass.
</p>

CSS

p {
    font-family: verdana;
    text-decoration: line-through;
}

.blur {
   color: transparent;
   text-shadow: 0 0 7px rgba(0,0,0,0.5);
}