html
{
    background: url('https://plus.unsplash.com/premium_photo-1670002236476-cab8fdb11260?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');

}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
}

.clock{
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    background-color:transparent;
    border:10px solid rgb(255, 248, 145);
    border: 10px solid #B99F80;
    background: url('https://www.pngmart.com/files/15/Antique-Clock-PNG-Transparent-HD-Photo.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}
.clockface{
    width: 100%;
    height: 100%;
    
}
.hand{
    background: #000;
    width: 28%;
    height: 2px;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: rotate(-91deg);
    transform-origin: 0%;
} 
.min-hand{
    width: 35%;
}
.sec-hand{
    width: 25%;
}

