#clockContainer {
    position: relative;
    margin: auto;
    height: 260px;
    /*to make the height and width responsive*/
    width: 260px;
    background: url("https://github.com/pulkit-rastogi97/CSS-Neumorphism-Analog-Clock/blob/master/images/clock.png?raw=true") no-repeat;
    /*setting our background image*/
    background-size: 100%;
    border: 5px solid #ebf5fa;
    border-radius: 50%;
    box-shadow: 0 -15px 15px rgba(255,255,255,0.05),
                inset 0 -10px 10px rgba(255,255,255,0.05),
                0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 4px 10px rgba(0, 0, 0, 0.3);
}
.clockContainer::before{
    position:absolute;
    content:"";
    height:6px;
    width:6px;
    background:black;
    border-radius:50%;
    left:50%;
    top:50%;
}
  
#hour,
#minute,
#second {
    position: absolute;
    background: black;
    border-radius: 10px;
    transform-origin: bottom;
}
#second {
    background: #4C8606;
}
  
#hour {
    width: 1.8%;
    height: 25%;
    top: 25%;
    left: 48.85%;
    opacity: 0.8;
}
  
#minute {
    width: 1.6%;
    height: 30%;
    top: 19%;
    left: 48.9%;
    opacity: 0.8;
}
  
#second {
    width: 1%;
    height: 40%;
    top: 9%;
    left: 49.25%;
    opacity: 0.8;
}