body {
    font-family: Arial, sans-serif;
    background-color: #303031;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }

  .counter {
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    animation: countUp 2s ease-out forwards;
  }

  @keyframes countUp {
    0% { transform: scale(1); }
    100% { transform: scale(1.5); }
  }