.target {
  width: 8vw;
  height: 8vw;
  border-radius: 50%;
  position: absolute;
  border: 0.5vw solid black; /* Black outline */
  box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.8); /* Drop Shadow */
  transition: transform 0.2s ease; /* Smooth transition for hover effect */
}

.target:hover {
  transform: scale(1.2); /* Enlarge on hover */
}

.pop {
  animation: popAnimation 0.2s ease forwards; /* Apply the pop animation */
}

@keyframes popAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3); /* Quickly enlarge */
  }
  100% {
    transform: scale(0.1); /* Shrink to nothing */
    display:none;
  }
}

.targetText {
    font-size: 2vw;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    user-select: none; /* Make text non-selectable */
}