/* Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);

/* Global */
html{
  min-height: 100%;
  overflow: hidden;
}
body{
  height: calc(100vh - 8em);
  padding: 0;
  color: black;
  font-family: 'Special Elite', monospace;  
  background-color: white;
  margin: 0;
}

.line-1{
    position: relative;
    top: 50%;  
    width: 9em;
    margin: 0 auto;
    border-right: 2px solid white;
    font-size: 180%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}

/* Animation */
.anim-typewriter{
  animation: typewriter 4s steps(17) 1s 1 normal both,
             blinkTextCursor 600ms steps(17) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 9.25em;}
}
@keyframes blinkTextCursor{
  from{border-right-color: black;}
  to{border-right-color: transparent;}
}