.cursor {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: transparent;
  opacity: 1;
}

.cursor2 {
  position: fixed;
  width: 15px;
  height: 15px;
  background-color: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1000;
  opacity: 1;
}

.content:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: #120101;
  opacity: 0.5;
}

.content:hover ~ .cursor2 {
  opacity: 0;
}
