
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  cursor: none;
}

body {
  overflow: hidden;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #111;
}


.floating-icon {
  position: fixed;
  left: max(1.8vh, 1.2vw);
  top: max(1.35vh, 0.9vw);
  width: max(10.5vh, 7vw);
  height: max(10.5vh, 7vw);
  background-image: url("./images/page/head-icon.png");
  background-size: cover;
  opacity: .5;
  filter: grayscale(.7);
  z-index: 999;
  transition: opacity 250ms ease-in-out, transform 250ms ease-in-out, filter 250ms ease-in-out;
}

.floating-icon:hover {
  opacity: .8;
  transform: scale(.95);
  filter: grayscale(0);
}

.central-text {
  color: #fff;
  text-align: center;
  padding: 0 max(3vh, 2vh);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: max(3vh, 2vw);
}

#cursor {
  background: #fff;
  opacity: .7;
  mix-blend-mode: difference;
  width: max(.625vh,.75vw);
  height: max(.625vh,.75vw);
  position: fixed;
  left: -100vw;
  top: -100vh;
  border-radius: max(1.25vh,1.5vw);
  transform: translate(-50%,-50%);
  pointer-events: none;
  transition: transform 250ms ease-in-out, opacity 250ms ease-in-out;
  z-index: 9999;
}