
.text-auto-escribir p{
  max-width: fit-content;
  margin: auto;
  overflow:hidden;
  white-space: nowrap;
  animation: typing 4s steps(20, end) forwards infinite;
}

h2-autoescribir{
  max-width: fit-content;
  margin: auto;
  overflow:hidden;
  white-space: nowrap;
  animation: typing 4s steps(20, end) forwards infinite;
}
@keyframes typing{
  from { width:0; }
  to { width:100%; }
}

