body,html{
    cursor: none;
}
    
#stalker {
    pointer-events: none;
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: rgba(226, 116, 71, 0.5);
    border-radius: 50%;
    transition: transform 0.2s;
    transform: translate(0, 0);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #stalker span {
    opacity: 0;
    font-size: 12px;
    color: #e27447;
    transition: 0.2s;
    cursor: none;
  }
  
  #stalker.hover span {
    opacity: 1;
    transition: 0.2s;
  }
  
  #stalker.hover {
    width: 80px;
    height: 80px;
    background-color: transparent;
    border: 1px solid #e27447;
    transition: 0.2s;
    cursor: none;
  }
  
  /* .ga {
    display: flex;
    width: 300px;
    height: 200px;
    background-color: #eee;
    justify-content: center;
    align-items: center;
    color: black;
    text-decoration: none;
  } */
  /* .cursor {
    cursor: default;
  } */