#countdown {
    font-family: Arial, sans-serif;
    text-align: center;
}

.event-date {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.time-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-part {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
}

.number {
    display: inline-block;
    transition: transform 0.5s ease-in-out;
}

.number.animate {
    animation: scaleUp 0.5s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.label {
    font-size: 0.5em;
    display: block;
    margin-top: 5px;
}
