#countdown-titre {
    width: fit-content;
    margin: 0 auto 10px auto;
    font-size: 22px;
    font-weight: bold;
    color: lightgreen;
}      
		
#countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
	margin-bottom: 10px;
      }
	  
.time-box {
    background: #1c1c1c;
    border-radius: 12px;
    padding: 10px;
    width: 80px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}
.number {
    height: 36px;
    overflow: hidden;
    position: relative;
    font-size: 3em;
    font-weight: bold;
}

.number span {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out;
}

.time-box label {
    margin-top: 10px;
    display: block;
    font-size: 0.85em;
    opacity: 0.7;
    text-transform: uppercase;
	color: #f2af70;
}

.message {
    font-size: 1.2em;
    margin-top: 50px;
    color: white;
}