.odometer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: white;
    margin-top: 50px; 
    position: fixed;
    top: -50px;
    z-index: 2000;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.763);
    width: 100vw;
    height: 100vh;

  }
 
  .digit {
    overflow: hidden;
    height: 1.2em; 
    font-size: 10em;

  }
  
  .number {
    transition: transform 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    transform: translateY(0%);
    height: 100%;
    position: relative;
    color: white;
  }
  
  .number span {
    line-height: 1.2em; /* Match with height */
    text-align: center;
  }
  .sys-text{
    font-size: 18px;
  }