.text-two {
    display: inline-block;
    /* Content is not revealed 
       until the animation */
    overflow: hidden;

    /* Keeps the content on a single line */
    white-space: nowrap;

    /* Gives that scrolling effect 
       as the typing happens */
    margin: 0 auto;

    /* Typing Effect Animation */
    animation: typing 3.5s steps(30, end)
}

/* Typing Effect on Website Loading */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}