@import url("https://fonts.googleapis.com/css2?family=Darker+Grotesque&display=swap");
.typing-container {
  display: flex;
  justify-content: center;
  align-items: center; }
  .typing-container #feature-text {
    margin-left: 8px; }
  .typing-container .input-cursor {
    display: inline-block;
    width: 2px;
    height: 42px;
    background-color: white;
    margin-left: 8px;
    animation: blink 0.6s linear infinite alternate; }

@keyframes blink {
  0% {
    opacity: 1; }
  40% {
    opacity: 1; }
  60% {
    opacity: 0; }
  100% {
    opacity: 0; } }
