/* Your existing CSS for .container, .btn, .stylish2, etc. here */

/* Styles for the letter animation */
.js-spanize span {
    animation: letter-glow 0.7s ease both;
    display: inline-block; /* Important for spacing */
}

.js-spanize span:nth-child(1) { animation-delay: 0.05s; }
.js-spanize span:nth-child(2) { animation-delay: 0.10s; }
.js-spanize span:nth-child(3) { animation-delay: 0.15s; }
.js-spanize span:nth-child(4) { animation-delay: 0.20s; }
/* ... and so on for each letter. See the note below about automating this */

/* Letter Glow Keyframes */
@keyframes letter-glow {
  0%   { opacity: 0; text-shadow: 0px 0px 1px rgba(255,255,255,0.1)}
  66%  { opacity: 1; text-shadow: 0px 0px 20px rgba(255,255,255,0.9) }
  77%   { opacity: 1;  }
  100% { opacity:0.7; text-shadow: 0px 0px 20px rgba(255,255,255,0.0)}
}