#typewriter {
  display: block;
  text-align: left;
  width: 1200px;
  margin: 0 auto;
}
#typewriter-text,
#typewriter-cursor {
  line-height: 1.3;
  font-weight: bold;
}
#typewriter-text {
  display: inline-block;
  white-space: pre-line;
  color: #222222;
}
#typewriter-cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.7s step-end infinite;
}
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  50.01%, 100% {
    opacity: 0;
  }
}
.tw-highlight-programmatore {
  color: #155dfc;
}
.tw-highlight-wordpress {
  color: #155dfc;
}

.tw-highlight-woocommerce {
  color: #155dfc;
}
@media (max-width: 767px) {
  #typewriter-text,
  #typewriter-cursor {
    font-size: clamp(1.1rem, 5.4vw, 1rem);
    line-height: 1.25;
  }
}