@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");

* {
  font-family: "JetBrains Mono" !important;
  user-select: none;
  margin: 0;
}

html {
  overflow: hidden;
}

body,
html {
  height: 100%;
  background: #000;
  color: #fff;
  margin: 0;
}

#arena {
  background: #000;
  display: block !important;
  width: 100vw;
  height: 100vh;
}

#instructions {
  position: fixed;
  top: 30px;
  left: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

#instructions h1 {
  font-size: 20px;
}

#instructions p {
  font-size: 16px;
  color: gray;
}

.canvasbox {
  width: 100vw;
  overflow: hidden;
  opacity: 0;
}

#dotCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.dot {
  z-index: 1000;
  position: fixed;
  display: block !important;
  transition: all 0.3s;

  transform: translate(-50%, -50%);
}
