/* hex grid */
.hex-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #443246;
  overflow: hidden;
  cursor: default;
  z-index: -1;
}

#hex-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* cursor ring */
#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgb(189, 182, 182);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.1s;
  will-change: transform;
  z-index: 9999;
}

/*title*/
body {
    position: relative;
    z-index: 1;
    color: white;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-style: italic;
    font-weight: bold;
}

/* title animation */
#title::after {
  content: '|';
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}