Fuzzed Text
Small example of making text blurry.
HTML
<p>
This is an example of some <span class="ft">fuzzed text</span> with content on both sides.
</p>
CSS
.ft {
color: transparent;
text-shadow: 0 0 10px #000000aa;
}
<p>
This is an example of some <span class="ft">fuzzed text</span> with content on both sides.
</p>
.ft {
color: transparent;
text-shadow: 0 0 10px #000000aa;
}