
.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.typingText {
    color: #111112;
    font-family: "Work Sans", Sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    margin: 0 !important;
    min-height: 84px;
}

.typingText::after {
  content: "|";
  font-weight: 500;
  color: #111112;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@media (max-width: 1024px) {
    .typingText {
        font-size: 32px;
        min-height: 40px;
        text-align: center;
    }
}
