/* Countdown */

        .countdown {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-top: 5px;
            text-align: center;
              
        }
        
        .countdown-item {
            background: white;
            padding: 1px;
            border-radius: 10px;
            min-width: 40px;
            color: #080808;
            box-shadow: 0 5px 15px rgba(79, 62, 62, 0.1);
                      


        }
        
        .countdown-number {
            font-size: 2.5rem;
            font-weight: bold;
 
        }
        