@keyframes typing {
    from {
      width: 0;
    }
  }
@keyframes blink-caret {
    50% {
      border-color: transparent;
    }
  }

  body {
    width: 35em;
    margin: 0 auto;
    font-family: Tahoma, Verdana, Arial, sans-serif;
    background-color: dimgray;
    color: white;
    }
  
  h1 {
    font: bold 300% Consolas, Monaco, monospace;
    border-right: 0.1em solid black;
    width: 16.5em;
    width: 18ch;
    margin: 2em 1em;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 5s steps(18, end),
      blink-caret 0.5s step-end infinite alternate;
  }

  a{
    color: lightsteelblue;
  }

  a:hover{
    color:gray;
  }

  .ico-mrg{
    margin-right: 50px;
  }

  .Icons{
    text-align: center;
  }