*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
body{
    background-color:rgb(235, 235, 235) ;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.top{
   /* width: 743px;
    height: 570px;*/
    width: 65%;
    height: 65%;
    border-radius: 50%;
    background-image: radial-gradient(#007d5755, rgb(235, 235, 235) 70%);
    position: absolute;
    }
.bott{
   /* width: 743px;
    height: 570px;*/
    width: 65%;
    height: 65%;
    border-radius: 50%;
    background-color: #007d58;
    border: 0.5px solid #707070;
    animation: color 60s ease infinite;
    
}
@keyframes color {
    0%{
       background-color: #007d58; 
    }
    20%{
        background-color: #7d007d; 
    }
    40%{
        background-color: #a50505;  
    }
    60%{
        background-color: #00235f;
    }
    80%{
        background-color: rgb(174, 221, 17);
    }
    100%{
        background-color: #007d58;
    }
}