@import url(https://fonts.googleapis.com/css?family=Roboto);

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

#output {
  perspective: 1px;
  --rotate: 90deg;
  /* filter: blur(2.5px); */
  transition: perspective 1s ease-in-out;
}

.point {
  width: 10px;
  height: 10px;
  background: currentColor;
  border-radius: 5px;
  backface-visibility: hidden;
  position: absolute;
}