.var-highlight {
  color: #C0AD60;
}

.string-highlight {
  color: rgba(253, 149, 90, 0.8);
}

#typewriter { 
  margin: 0;
  font-family: "Courier New";
  text-align: center;
  /* Texto 3D */
    font: bold .9em/1 arial; 
  line-height: 1.8em;
    color: #ebcd7b;
    text-shadow: 0 2px 0 #b9d3b8,
      0 3px 0 #126326,
      0 3px 0 #daf5a0;
    /* Fin de Texto 3D */

}
#typewriter:after {
  content: "|";
  -webkit-animation: blink 500ms linear infinite alternate;
          animation: blink 500ms linear infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}