/* Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);

/* Global */
html {
      min-height: 100%;
}

body {
      height: calc(100vh - 8em);
      padding: 4em;
      color: rgba(255, 255, 255, 0.75);
      font-family: 'Anonymous Pro', monospace;
      background-color: rgb(25, 25, 25);
}

a,
a:link,
a:visited,
a:hover,
a:active {
    color: #9c9c9c; /*color of your choosing*/
    text-decoration: underline;
    font-weight: normal;
}

.fab, .fas{
      color: rgb(199, 199, 199);
      font-size: 2rem;
      padding: 0 1rem;
}

.line {
      position: relative;
      top: 50%;
      width: 16em;
      margin: 0 auto;
      border-right: 2px solid rgba(255, 255, 255, 0.75);
      font-size: 180%;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;transform: translateY(-50%);
}

/*Animation*/

.anim-typewriter {
      animation: typewriter 4s steps(40) 1s 1 normal both,
      blinkTextCursor 500ms steps(40) infinite normal;
}

.content {
      position: sticky;
      top: 80%;
}

@keyframes typewriter {
      from {
            width: 0;
      }
      to {
            width: 22em;
      }
}

@keyframes typewriter-mobile {
      from {
            width: 0;
      }
      to {
            width: 6.3em;
      }
}



@keyframes blinkTextCursor {
      from {
            border-right-color: rgba(255, 255, 255, 0.75);
      }
      to {
            border-right-color: transparent;
      }
}

@media only screen and (max-width: 600px) {
      .anim-typewriter {
            animation: typewriter-mobile 1.5s steps(12) 1s 1 normal both,
            blinkTextCursor 500ms steps(15) infinite normal;
      }
    }
