/*---------------------------------------------------------------------------------

 Theme Name:   The Buzz Media
 Theme URI:    http://thebuzzmedia.co.za/
 Description:  Intelligent marketing and design for growing brands.
 Author:       The Buzz Media
 Author URI:   http://thebuzzmedia.co.za/
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

------------------------------ ADDITIONAL CSS HERE ------------------------------*/

.typewriter-text {
  font-family: monospace;
  border-right: .15em solid orange; /* The blinking cursor */
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The cursor blink effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}