body{  background: url('backgrand.jpg'); 
    display: flex;
     flex-direction: column; 
     min-height: 100vh;}
     
.tit1{
    width: 100%;
    margin-top: 40px;
    text-align: center;
    font-family: 'Montserrat','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: rgb(57, 53, 53);}

.main{
    width: 100%;
    height: 300px; 
    text-align: center;
    display: flex;
    margin: auto;}

.main2{
    width: 320px;
    height: 320px; 
    display: flex;
    margin: auto;}    

.circle{
    background: conic-gradient(rgb(205, 30, 30) 0%,
    rgb(221, 104, 104) 33%,
    rgb(156, 156, 232) 33%,
    rgb(107, 107, 149) 66%,
    rgb(78, 159, 78) 66%,
    rgb(167, 202, 167) 100%);
    width: 300px;
    height: 300px;
    border-radius: 100%;
    margin: auto;
    align-items: center;
    display: flex;
    color: rgb(34, 36, 36);
    font-family: 'Montserrat','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;}

.cir{
    background-color: rgb(197, 113, 205);
    width: 280px;
    height: 280px;
    border-radius: 100%;
    margin: auto;
    align-items: center;
    display: flex;
    color: white;
    font-family: 'Montserrat','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center; }   

.txt1{ width: 100%; text-align: center;}
    
.pointer{ 
    width: 320px;
    height: 320px;
    position: absolute; 
    animation: charkhesh 5s linear infinite; 
    transform: rotate(45deg);}

.moon{
    width: 30px;
    height: 30px;
    background-color: rgb(88, 86, 82);
    position: absolute;
    border-radius: 100%;}

.dam{animation: step1 5s linear infinite;}

.hold{ transform: scale(1.2);    }

.bazdam{ animation: step2 5s linear infinite;}

@keyframes charkhesh {
    from{transform: rotate(45deg) }
    to{ transform: rotate( 405deg)  }   }

@keyframes step1 {
    from{ transform: scale(1);}
    to{   transform: scale(1.5);  }  }

@keyframes step2 {
    from{  transform: scale(1.2); }
    to{  transform: scale(0.7)    }  }