*{
    margin: 0;
    padding: 0;

}
body{
    background-color: lightgoldenrodyellow;
}

#container{
    position: relative;
    /* width: 400px;
    height: 400px; */
    width: 40vw;
    height: 40vw;
    margin: auto;
    
    background: url(clock.png) no-repeat;
    background-size: 100%;
}


#hour,#minute,#second{
    position: absolute;
    background-color: black;
    transform-origin: bottom;
    border-radius: 10px;
}

#hour{
    left: 48.5%;
    top: 30%;
    width: 2.5%;
    height: 20%;
    opacity: 0.8;
   
}
#minute{
    left: 49%;
    top: 20%;
    width: 1.5%;
    height: 30%;
    opacity: 0.8;
   
    
}
#second{
    left: 49.5%;
    top: 18%;
    width: 0.5%;
    height: 32%;
    opacity: 0.8;
    
}