.custom-cursor{
	/*transform:  translate(500%, 100%);*/
}

header h1{
	mix-blend-mode:  color-dodge;
}

main{
  padding-top: 10vh;
 
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.custom-cursor.visible {
  opacity: 1;
}

