.custom-cursor,
.custom-cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.custom-cursor {
  width: 12px;
  height: 12px;
  background-color: black;
}

.custom-cursor-outline {
  width: 32px;
  height: 32px;
  border: 1px solid black;
}

@media screen and (max-width: 560px) {
  .custom-cursor,
  .custom-cursor-outline {
    display: none;
  }
}
