/* Animations */
@keyframes trending {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2.5);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* classes */

body {
  background-color: #fff;
  width: 100vw;
  height: 100vh;
  margin: 0 0 0 0;
}

/* This wrapper centers the radardot */
.wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* this animates the inner dot and outer dot */
.animate {
  animation: fadein 2s, trending 2s linear infinite;
}

/* this is the inner dot */
.radarpoint {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: rgb(0, 0, 0);
  cursor: pointer;
  z-index: 1;
}
/* this is the outer dot */
.radarpointouter {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: rgb(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
