
.terminalFont {
    position: relative;
    font-family: monospace;
    background-color: transparent;
    text-decoration: none;
    color: white;
    font-size: 1.5em;
}

.cursor {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background: transparent;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-left: .5em solid;
    -webkit-animation: typing 1s step-end infinite,
    blinking 1s step-end infinite;
    animation: typing 1s step-end infinite,
    blinking 1s step-end infinite;
}

@-webkit-keyframes typing {
    from,to { width: 0; }
    25% { width: 0; }
    50% { width: 0; }
    75% { width: 100%; }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@-webkit-keyframes blinking {
    from, to { border-color: transparent; }
    50% { border-color: white; }
}

@keyframes blinking {
    from, to { border-color: transparent; }
    50% { border-color: white; }
}