.logotype{
  display: flex;
  align-items: center;
  /* gap: .1em; */  
}
.logotype__text_after{
  font-family: 'Times New Roman', Times, serif;
  opacity: 0.7;
}

.logotype__cursor{
  background-color: aliceblue;
  width: .1em;
  height: 1em;
  border-radius: .1em;
  opacity: .5;
  animation: blink 1s step-start infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
