@charset "UTF-8";
/* CSS Document */
@-webkit-keyframes typing {
    from { width: 0 }
    to { width:7.7em }
}

@-moz-keyframes typing {
    from { width: 0 }
    to { width:7.7em }
}

@-webkit-keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #acacac }
}

@-moz-keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #acacac }
}

body { font-family: Consolas, monospace; }
h1{
	margin-top: 48vh;
	margin-left: calc(50vw - 5em);
	color: #eeeeee;
    font-size:150%;
    width:11em;
    white-space:nowrap;
    overflow:hidden;
    border-right: .1px solid black;
    
    -webkit-animation: typing 5s steps(13, end), /* # of steps = # of characters */
                        blink-caret 0.5s step-end infinite;
    -moz-animation: typing 5s steps(13, end), /* # of steps = # of characters */
                        blink-caret 0.5s step-end infinite;
}

