*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    color: #070707;
}

.container{
    position: relative;
}
.wrapper2 {
    width: 180px;
    height: 180px;
   
    padding: 13px 1px 1px;
    background: #ffffff;
    border-radius: 200px;
    border: solid 2px rgb(250, 221, 226);
    flex-direction: column;
   
  }

.clock{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #ada8a8;
    border: 4px solid rgba(246, 248, 243, 0.25);
    box-shadow: 0px 0px 10px rgba(247, 4, 4, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
   
   
}

.clock span{
    position: absolute;
    transform: rotate(calc(30deg * var(--i))); 
    inset: 2px;
    text-align: center;
}

.clock span b{
    transform: rotate(calc(-30deg * var(--i)));
    display: inline-block;
    font-size: 15px;
}

.clock::before{
    content: ' ';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 2;
}

.hand{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hand i{
    position: absolute;
    background-color: var(--clr);
    width: 3px;
    height: var(--h);
    border-radius: 8px;
}









