* {
  margin: 0;
  padding: 0;
  
  cursor: none;
}

.inner-cursor {
  position: fixed;
  left: 10px;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
 
  
  border-radius: 50%;
  pointer-events: none;
  transition: width 0.5s height 0.5s;
  z-index: 100;
}

.outer-cursor {
  position: fixed;
  left: 10px;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
 background-color: 0059FF;
 z-index: 77;
 pointer-events: none;
  transition: 0.1s;
}