/* Нажатие кнопки мыши */
.click-effect {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: var(--second-color);
  animation: ripple-animation 600ms linear;
  pointer-events: none;
  z-index: 9999;
}
@keyframes ripple-animation {
  to {
    transform: scale(0.8);
    opacity: 0;
  }
}

/*Перемещение курсора*/
.trail {
    position: fixed;
    pointer-events: none; /* Чтобы элементы не мешали кликам */
    font-size: 16px;
    color: var(--third-color);
    user-select: none;
    animation: fadeMove 1s forwards;
    font-family: 'Arial', sans-serif;
}
@keyframes fadeMove {
	0% {
	  opacity: 0.25;
	  transform: translateY(0);
	}
	100% {
	  opacity: 0;
	  transform: translateY(-20px);
	}
}