body {
    margin: 0;
    overflow: hidden;
    background: #06003c;
    cursor: pointer;
  }
.circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  width: 20px;
  height: 20px;
  opacity: 0.1;
  transform: scale(1);
  transition: transform 3s, opacity 0.5s;
  background-image: linear-gradient(rgb(32, 148, 148)  ,rgb(60, 101, 163),rgb(128, 178, 178));
  /* background: radial-gradient(circle, rgb(0, 47, 255), rgb(6, 169, 239)); test*/
}

