<html>
  <head>
    <style>
      .flash {
        animation: flash 1s infinite;
      }

      @keyframes flash {
        50% {
          color: transparent;
        }
      }
    </style>
  </head>
  <body>
    <h1 class="flash">What services are you looking for?</h1>
  </body>
</html>