/* Removed body styles to avoid conflict with index.html body styles */
/* body {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: black;
} */
#creature-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#creature {
  font-size: .05vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150em;
  height: 150em;
  flex-wrap: wrap;
}
#creature div {
  transform-style: preserve-3d;
  position: relative;
  width: 4em;
  height: 4em;
  margin: 3em;
  border-radius: 2em;
  will-change: transform;
  mix-blend-mode: plus-lighter;
  /* mix-blend-mode: screen; */
  /* mix-blend-mode: lighten; */
  background: var(--red);
}