*{
    margin: 0;
    padding: 0;
    background-color: rgb(54, 49, 49);
}
#clockContainer{
    position: relative;
    background: url(./clock.png) no-repeat;
    background-size: 100%;
    height: 40vw;
    width: 40vw;
    margin: auto;
}
#hour, #minute, #second{
    position: absolute;
    background-color: rgb(2, 2, 2);
    border-radius: 8px;
    transform-origin: bottom;
}
#hour{
    width: 2.5%;
    height: 22%;
    top: 27.6%;
    left: 48.5%;
    /* display: none; */
}
#minute{
    width: 2%;
    height: 33%;
    top: 16.4%;
    left: 48.7%;
}
#second{
    width: 1.8%;
    height: 35%;
    top: 14%;
    left: 48.7%;
    /* display: none; */
}