

  .cursorradar {
    position: fixed;
    top: -50%; 
    left: -50%; 
    width: 5px; 
    height: 5px; 
    border: 0.1px solid #05a6d2;
    border-radius: 50%;
    z-index:99999999;
    animation: cursorradar 1s linear infinite;
  }

  @keyframes cursorradar {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(3);
    }
    100% {
      transform: scale(1);
    }
  }

  .cursorradarout {
    position: fixed;
    top: -50%; 
    left: -50%; 
    width: 10px; 
    height: 10px; 
    border: 0px #eee solid;
    background:url('../img/favicon.png');
    background-size: cover;
    z-index:-1;
    animation: cursorradarout 33s linear infinite;
  }

  @keyframes cursorradarout {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(7);
    }
    100% {
      transform: scale(1);
    }
  }