

.containerw {
  text-align: center;
  max-width: 100%;
}

.typity {
  background-position: 0% 100%;
  border-bottom: 0px solid #d50000;
  box-sizing: border-box;
  color: #FFFFFF;
  font-size: 16px;
  padding-right: 2px;
  position: relative;
  transition: background-position 1s;
}
.typity::after {
  animation: blink-cursor 0.75s step-end infinite;
  background-color: transparent;
  content: "";
  display: block;
  height: 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0px;
}
.typity.highlight {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.2) 50%, transparent 50%);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 200% 2rem;
}
.typity.highlight::after {
  animation: none;
}

@keyframes blink-cursor {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: black;
  }
}
@media only screen and (max-width: 600px) {
  html {
    font-size: 12px;
  }

  .typity {
    border-bottom: 0px solid red;
  }
}