*{
    margin: 0;
    padding: 0;
}
#clockContainer{
    position: relative;
    height: 40vw;
    width: 40vw;
    background: url(clock.png) no-repeat;
    background-size: 100%;
    margin: auto;
}

#hour, #minute, #second{
    position: absolute;
    background: #585095;
    border-radius: 28%;
    transform-origin: bottom;
}

#hour{
    width: 3%;
    height: 15%;
    top: 35%;
    left: 48.5%;
    opacity: 62%;
}

#minute{
    width: 2%;
    height: 19%;
    top: 31%;
    left: 49%;
    opacity: 64%;
}

#second{
    width: 1%;
    height: 22%;
    top: 28%;
    left: 49.5%;
    opacity: 66%;
    background-color: red;
}