
.površinaure {
    width: 400px;
    height: 400px;
    background-color: lightgray;
    border: solid;
    border-color: black;
    border-radius: 50%;
    margin:250px auto ;
    position: relative
}

.številke {
    font-size: 43px;
    margin: 0;
    position: absolute;
    text-align: center;
    width: 40px;
}

#št12 {
    top: 10px;
    left: 170px;
    width: 60px;    
}

#št11 {
    top: 43px;
    left: 80px;
    width: 60px;    
}

#št10 {
    top: 105px;
    left: 30px;
    width: 60px;    
}

#št9 {
    top: 170px;
    left: 10px;       
}   

#št8 {
    bottom: 100px;
    left: 45px;    
}

#št7 {
    bottom: 43px;
    left: 95px;    
}

#št6 {
    bottom: 10px;
    left: 180px;    
}

#št5 {
    bottom: 43px;
    right: 95px;    
}

#št4 {
    bottom: 100px;
    right: 45px;    
}

#št3 {
    top: 170px;
    right: 10px;    
}

#št2 {
    top: 100px;
    right: 45px;    
}

#št1 {
    top: 43px;
    right: 95px;    
}





#sekundnikazalec{
    top: 195px;
    left: 17px;
    position: absolute;
    background-color: red;
    border: red;
    border-radius: 50%;
    width: 185px;
    height: 7px;
    animation: kroženje 60s linear infinite;
    z-index: 5;
    transform-origin: right;
    

}

@keyframes kroženje {
    from {
        transform: rotate(calc(var(--transformStart)));
    }

    to {
        transform: rotate(calc(var(--transformStart) + 360deg));
    }
}



#minutnikazalec{
    top: 195px;
    left: 27px;
    position: absolute;
    background-color: aqua;
    border: aqua;
    border-radius: 50%;
    width: 175px;
    height: 13px;
    animation: kroženje 3600s linear infinite;
    z-index: 3;
    transform-origin: right;
}




#urnikazalec{
    top: 195px;
    left: 52px;
    position: absolute;
    background-color: black;
    border: black;
    border-radius: 50%;
    width: 150px;
    height: 20px;
    animation: kroženje 43200s linear infinite;
    z-index: 1;
    transform-origin: right;
}



#središče{
    top: 185px;
    left: 183px;
    width: 30px;
    height: 30px;
    background-color: white;
    position: absolute;
    border: white;
    border-radius: 50%;
    z-index: 7;
}



































