body { 
	font-family: monospace; 
	background: #fff;
}
.contenedor {
	margin: auto;
	display: table;
}

h3 { 
	position: relative; 
	float: left;
	background: #fff;
	color: #013220;
	font-size: 14px;
}

h3 span {
    position:absolute;
    right:0;
    width:0;
    background: #fff;
    border-left: 1px solid #000;
    animation: escribir 5s steps(30) infinite alternate;
}

@keyframes escribir {
    from { width: 100% }
    to { width:0 }
}