/* styles.css */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1d1f26;
    font-family: 'Courier New', Courier, monospace;
}

.clock {
    display: flex;
}

.flip {
    width: 80px;
    height: 120px;
    margin: 0 10px;
    overflow: hidden;
    position: relative;
}

.digit {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 60px;
    color: #fff;
    background-color: #222;
    border-radius: 10px;
    transform-origin: top;
    animation: flip 1s infinite;
}

/* Animation de retournement */
@keyframes flip {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(180deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}
