*{
    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;
    filter: blur(5px);
    
}

.bot2{
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background-image: radial-gradient(#b1e5f9, rgba(252, 3, 3, 0) 70%);
    position: absolute;
}
@keyframes color {
    0%{
       background-color: #18add2; 
    }
    20%{
        background-color: #1ee410; 
    }
    40%{
        background-color: #ffffff;  
    }
    60%{
        background-color: #14d6b9;
    }
    80%{
        background-color: rgb(218, 10, 197);
    }
    100%{
        background-color: #18add2;
    }
}