#horlogenumero {

    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#horloge .cardan {

    width: 80px;
    height: 80px;
    border: 3px solid purple;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#horloge .cardan .horaire {
    position: absolute;
    top: 0;
    width: 2px;
    height: 38px;
    display: flex;
    align-items: start;
    justify-content: center;
    transform-origin: bottom;

}

#horloge .cardan .centre {

    width: 5px;
    height: 5px;
    background-color: black;
    border-radius: 50%;
}

#horloge .cardan .heures {
    position: absolute;
    width: 3px;
    height: 15px;
    background-color: red;
    transform-origin: bottom;
    top: 25px;
}
#horloge .cardan .heures {
    position: absolute;
    width: 3px;
    height: 15px;
    background-color: red;
    transform-origin: bottom;
    top: 25px;
}
#horloge .cardan .heures::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 0 3px 7px 3px;
    /* Adjust arrow size */
    border-color: transparent transparent red transparent;
    /* Adjust arrow color */
}

#horloge .cardan .minutes {
    position: absolute;
    width: 3px;
    height: 20px;
    background-color: orange;
    transform-origin: bottom;
    transform: rotate(30deg);
    top: 20px;
}

#horloge .cardan .minutes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 0 3px 7px 3px;
    /* Adjust arrow size */
    border-color: transparent transparent orange transparent;
    /* Adjust arrow color */
}

#horloge .cardan .secondes {
    position: absolute;
    width: 3px;
    height: 25px;
    background-color: #9e1616;
    transform-origin: bottom;
    transform: rotate(60deg);
    top: 15px;
}

#horloge .cardan .secondes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 0 3px 7px 3px;
    /* Adjust arrow size */
    border-color: transparent transparent #9e1616 transparent;
    /* Adjust arrow color */
}


