.cursor.small{
    width: 15px;
    height: 15px;
    left: 10px;
    background-color: #b9a77f;
    border: 1px solid rgba(0,0,0,.3);
    border-radius: 50%;
    transition: all 20ms;
    z-index: 100000;
    position: fixed;
    opacity: .8;
  }
  .cursor.big{
    z-index: 10000;
    position: fixed;
    width: 15px;
    height: 15px;
    left: 10px;
    background-color: rgba(0,0,0,.3);
    border: 1px solid rgba(0,0,0,.3);
    border-radius: 50%;
    transition: all 50ms;
    opacity: .8;
  }

  .cursor.small.overLink {
    width: 20px;
    height: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    margin-left: -2.5px;
    margin-top: -2.5px;
    opacity: 1;
  }

  @media screen and (max-width: 600px) {
    .cursor {
      display: none;
    }
}