body {
cursor: url("cursor.gif"), default;
cursor: url("cursor.gif"), auto;
}

a {
cursor: url("hand.gif"), pointer;
}

@keyframes animate{
  0%{ 
    cursor: url("busy.gif"), wait;
  }
  25%{ 
    cursor: url("busy.gif"), wait;
  }
  50%{ 
    cursor: url("busy.gif"), wait;
  }
  75%{ 
    cursor: url("busy.gif"), wait;
  }
  100%{ 
    cursor: url("busy.gif"), wait;
  }
}

div {
    height: 200px;
    width: 400px;
    background: 018281;

    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -200px;
}