*{
      margin: 0;
      padding: 0;
      box-sizing: content-box;
    }

    body {
      background: radial-gradient(Circle at center, #ffffff 0%, #8c8a8a 100%);
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
    }

    .center-heading {
        position: absolute;
        top: 20px;
        width: 100%;
        text-align: center;
        font-size: 32px;
        font-weight: bold;
        font-family: 'Poppins', sans-serif;
        z-index: 1000;
        color: #000;
    }

    .center-heading .byline {
        font-size: 16px;
        font-weight: normal;
        margin-left: 10px;
        text-align: center;
    }

    .clock {
      display: flex;
      gap: 100px;
      transform: scale(0.65); /* scale down */
      transform-origin: center center;  
    }

    .digit-strip {
      width: 80px;
      height: 622px;
      overflow: visible;
      position: relative;
      background: linear-gradient(to center, #e0e9eb, #9b9d9d);
      border-radius: 20px;
      box-shadow: 0 0 12px rgba(0,0,0,0.4);
      border: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: center;
      align-items: center;
      transition: transform 0.9s ease-in-out;
    }

    .digits {
      position: absolute;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .digit {
      height: 60px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 600;
      font-size: 28px;
      color: rgba(0, 0, 0, 0.5);
      position: relative;
    }

    .digit.active {
      color: #000000;
      font-weight: bold;
      font-size: 40px;
      text-shadow: 0 0 10px #6d6f6e;
    }

    .digit.active::before {
      content: "";
      position: absolute;
      width: 80px;
      height: 80px;
      border-radius:20%;
      border: 2px solid rgba(0, 0, 0, 0.3);
      background: rgba(255, 255, 255, 0);
      z-index: 2;
      box-shadow: 0 0 8px rgba(74, 75, 75, 0.622);
    }

    .digit-strip.small-strip {
      height: 240px; /* Decrease this as needed */
    }

    @media (max-width: 768px) {
        .clock {
            gap: 60px;
            transform: scale(0.65);
        }

        
    }

    @media (max-width: 480px) {
        .clock {
            gap: 50px;
            transform: scale(0.4);
            
        }

        
    }
