
.coming {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 1000px;
}


body{
    background: #68F3E1;
  }
  
  
  .circle{
    position: absolute;
    border-radius: 50%;
    background: white ;
    animation: ripple 10s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;
  }
  
   .small{
    width: 200px;
    height: 200px;
    right: -100px;
    top: -100px;
  }
  
  .medium{
    width: 400px;
    height: 400px;
    right: -200px;
    top: -200px;
  }
  
  .large{
    width: 600px;
    height: 600px;
    right: -300px;
    top: -300px;
  }
  
  .xlarge{
    width: 800px;
    height: 800px;
    right: -400px;
    top: -400px;
  }
  
  .xxlarge{
    width: 1000px;
    height: 1000px;
    right: -500px;
    top: -500px;
  }

  

   body {
	background: linear-gradient(-45deg, #68F3E1, #ffea05, #fa738e, #f83caa);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}














  
  .shade1{
    opacity: 0.2;
  }
  .shade2{
    opacity: 0.5;
  }
  
  .shade3{
    opacity: 0.7;
  }
  
  .shade4{
    opacity: 0.8;
  }
  
  .shade5{
    opacity: 0.9;
  }
  
  @keyframes ripple{
    0%{
      transform: scale(0.8);
    }
    
    50%{
      transform: scale(1.2);
    }
    
    100%{
      transform: scale(0.8);
    }
  }
  
  