#clockContainer
{
    position: relative;
    margin: auto;
    /* border: 2px solid red; */
    height: 40vw;
    width: 40vw;
    background: url(clock.png) no-repeat;
    background-size: 100%;
}

#hour, #minute, #second
{
    position: absolute;
    background: black;
    border-radius: 10px;
}

#hour
{
    width: 2%;
    height: 24%;
    top: 25%;
    left: 48.77%;
    opacity: 0.8;
    /* display: none; */
    transform-origin: bottom;
}
#minute
{
    width: 1.7%;
    height: 33%;
    top: 17%;
    left: 48.9%;
    opacity: 0.8;
    /* display: none; */
    transform-origin: bottom;
}
#second
{
    width: 1%;
    height: 32%;
    top: 18%;
    left: 49.27%;
    opacity: 0.8;
    transform-origin: bottom;
}