
.analog-clock{
    margin: auto;
    margin-top: 30px;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../../img/clock1.png);
    background-size: cover;
    /* border: 4px solid #091921; */
    border-radius: 50%;


}
.analog-clock::before{
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    background: rgb(255, 0, 0);
    border-radius: 50%;
    z-index: 20;
}
.analog-clock .hour,
.analog-clock .minute,
.analog-clock .second{
    position: absolute;
}

.analog-clock .hour,
#h-arrow{
    width: 85px;
    height: 85px;
}
.analog-clock .minute,
#m-arrow{
    width: 110px;
    height: 110px;
}
.analog-clock .second,
#s-arrow{
    width: 140px;
    height: 140px;
}
#h-arrow,
#m-arrow,
#s-arrow{
    display: flex;
    justify-content: center;
    position: absolute;
}
#h-arrow::before{
    content: '';
    position: absolute;
    width: 5px;
    height: 40px;
    background: #000000;
    z-index: 10;
    border-radius: 6px;
}
#m-arrow::before{
    content: '';
    position: absolute;
    width: 4px;
    height: 60px;
    background: #18006e;
    z-index: 11;
    border-radius: 6px;
}
#s-arrow::before{
    content: '';
    position: absolute;
    width: 2px;
    height: 80px;
    background: rgb(255, 0, 0);
    z-index: 11;
    border-radius: 6px;
}
