.tipeando {
font-size: 4rem;
    padding: 0.5rem;
    font-family: 'Gotham', sans-serif;
    font-weight: bold;
    letter-spacing: 0.1rem;
    text-align: center;
    overflow: hidden;
    margin-bottom: 0;
}
.tipeando span.typed-text {
  font-weight: normal;
  color: #eb7100;
}
.tipeando span.cursor {
  display: inline-block;
  background-color: #566d73;
  margin-left: 0.1rem;
  width: 2px;
  animation: blink 1s infinite;
}
.tipeando span.cursor.typing {
  animation: none;
}
@keyframes blink {
  0%  { background-color: #566d73; }
  49% { background-color: #566d73; }
  50% { background-color: transparent; }
  99% { background-color: transparent; }
  100%  { background-color: #566d73; }
}