#clockContainer {
    position: relative;
    margin: auto;
    height: 50vw;
    /*to make the height and width responsive*/
    width: 50vw;
    background: url(clock-full.png) no-repeat;
    /*setting our background image*/
    background-size: 100%;
}
 
#hour {
    position: absolute;
    background: rgb(237, 28, 36);
    border-radius: 10px;
    transform-origin: bottom;
}
#minute {
    position: absolute;
    background: rgb(4, 170, 99);
    border-radius: 10px;
    transform-origin: bottom;
}
#second {
    position: absolute;
    background: rgb(246, 137, 36);
    border-radius: 10px;
    transform-origin: bottom;
}
 
#hour {
    width: 2.0%;
    height: 25%;
    top: 25%;
    left: 48.85%;
    opacity: 0.7;
}
 
#minute {
    width: 1.6%;
    height: 30%;
    top: 19%;
    left: 48.9%;
    opacity: 0.7;
}
 
#second {
    width: 1%;
    height: 40%;
    top: 9%;
    left: 49.25%;
    opacity: 0.7;
}