 /* Couleurs et police */
        :root {
            --terracotta: #E2725B;
            --background: #FFF5F2;
            --text-color: #4B2E2B;
        }

        .container {
            background-color: var(--terracotta);
            color: white;
            padding: 40px;
            border-radius: none;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            max-width: auto;
           height: 4vh;
        }

        h1 {
            font-size: 2em;
            margin-bottom: 20px;
        }

        .countdown {
           
            display: flex;
            justify-content: space-around;
            margin-top: -30px;
        }

        .countdown div {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .countdown div span {
            font-size: 2.5em;
            font-weight: bold;
        }

        .label {
            font-size: 1em;
            margin-top: 5px;
        }

        @media (max-width: 400px) {
            .countdown div span {
                font-size: 2em;
            }
        }