Photocopy effect

Swiped from this site.

html
<p>
  I've seen things... seen things you little people wouldn't believe. Attack
  ships on fire off the shoulder of Orion bright as magnesium... I rode on the
  back decks of a blinker and watched C-beams glitter in the dark near the
  Tannhäuser Gate. All those moments... they'll be gone.
</p>

<svg
  version="1.1"
  xmlns="http://www.w3.org/2000/svg"
  aria-hidden="true"
  width="0"
  height="0"
>
  <defs>
    <filter id="distort">
      <feTurbulence baseFrequency="1 1" numOctaves="1"></feTurbulence>
      <feDisplacementMap in="SourceGraphic" scale="2"></feDisplacementMap>
    </filter>
  </defs>
</svg>

<style>
  body {
    filter: url(#distort);

    font-size: 20px;
    font-family: "Times New Roman", serif;
    font-weight: bold;
  }

  p {
    max-width: 60ch;
  }
</style>