
  
  .copyright {
    font-size: 1rem;
    color: #000000;
  }
  
  .typing {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #000000;
    animation: typing 6s steps(18) infinite, blink 0.7s step-end infinite;
  }
  
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 10ch; /* Adjust this based on the number of characters */
    }
  }
  
  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }
  