* {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout:none;
  touch-action: pan-x pan-y;
}

html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;

  color: white;
  background-color: black;
  cursor: none;
  user-select: none;
}

.container {
  width: 100dvw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.mouse {
  left: 50%;
  top: 50%;
  position: fixed;
  width: 5vmin;

  pointer-events: none;
  cursor: none;
}

.hand {
  pointer-events: none;
  position: absolute;
  width: 10dvw;
  opacity: 0;
}

.footer {
  position: fixed;
  cursor: none;

  bottom: 0;
  right: 0;
  margin-bottom: .3em;
  margin-right: .3em;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.13);
  }
  10% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
