*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    color: white;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #212121;
}
.container{
    position: relative;
}

.clock{
    width: 400px;
    height: 400px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(9, 5, 19, 0.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}
.clock span {
    position: absolute;
    transform: rotate(calc(30deg * var(--i)));
    inset: 12px;
    text-align: center;
}
.clock span b {
    transform: rotate(calc(-30deg * var(--i)));
    display: inline;
    font-size: 30px;
}

.clock::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
}
.hand{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hand i{
    position: absolute;
    background-color:var(--clr);
    width: 5px;
    height: var(--h);
    border-radius: 8px;

}
