#cursor::after {
    content: "|";
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
  }
  
#navbar-text,
#cursor {
  display: inline;
}

#navbar-text {
  white-space: nowrap;
}
