* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    cursor: default;

    overflow: hidden;
    font-weight: 500;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cadran {
    height: 300px;
    width: 300px;

    background-color: rgb(0, 0, 0);

    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

#hoursContainer {
    position: absolute;
    height: 300px;
    width: 20px;

}
#hours {
    position: absolute;
    height: 90px;
    width: 20px;
    background-color: #FFFFFF;
    margin-top: 60px;
    border-radius: 4px;
    text-align: center;
}

#minutesContainer {
    position: absolute;
    height: 300px;
    width: 20px;

}
#minutes {
    position: absolute;
    height: 120px;
    width: 20px;
    background-color: #FFFFFF;
    margin-top: 30px;

    border-radius: 4px;
    text-align: center;
}

#secondsContainer {
    position: absolute;
    height: 300px;
    width: 20px;
}
#seconds {
    position: absolute;
    height: 140px;
    width: 20px;
    background-color: #FFFFFF;
    margin-top: 10px;
    border-radius: 4px;
    text-align: center;
}