@keyframes bgmove {
  0% { background-position: 0 0; }
  100% { background-position: 0 -450px; }
}

body {
	font-family: Arial;
	font-size: 16px;
	line-height: 1.5;
  height: 100vh;
  cursor: none;
  touch-action: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

div.cursor {
	position:  absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #29044a;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s;
}

div.cursor.is-down {
  width: 80px;
  height: 80px;
}

canvas {
  position: fixed;
	top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: lighten;
}

section.scratched-out {
  mix-blend-mode: darken;
}

div.pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d4d4d4;
  background-image: url(pattern.svg);
  background-size: 450px 450px;
  animation: bgmove 20s infinite linear;
}

div.lineup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8f12fd;
}

div.lineup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


