html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

body {
  /* Фон будет динамический через JS, тут запасной цвет */
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Arial Black", Arial, sans-serif;
  position: relative;
  height: 100vh;
  width: 100vw;
}

#center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 150px;
  font-weight: 900;
  color: #ffffffdd;
  user-select: none;
  pointer-events: none; /* чтобы фигура могла двигаться под текстом */
}

#canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  pointer-events: none;
}