#clockContainer{
    position: relative;
    margin: auto;
    height: 40vw;
    width: 40vw;
    background: url("../img/Clock.png") no-repeat;
    background-size: 100%;
}
#hour,#minute,#second{
    position: absolute;
    background: black;
    border-radius: 10px;
}
#hour{
    height: 25%;
    width: 2%;
    top: 24%;
    left: 48.5%;
    opacity: 0.8;
    transform-origin: bottom;
    /* display: none; */
}
#minute{
    height: 30%;
    width: 1.5%;
    top: 19%;
    left: 48.8%;
    opacity: 0.8;
    transform-origin: bottom;
    /* display: none; */
}
#second{
    height: 35%;
    width: 1%;
    top: 14%;
    left: 49%;
    opacity: 0.8;
    transform-origin: bottom;
    /* display: none; */
}