
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background-color: black;
}

#container {
  position: relative;
  width: 100%;
  height: 100%;
}

.moving {
  position: absolute;
}

#overlay-text {
  position: fixed;
  font-family: monospace;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  z-index: 9999;
  pointer-events: none;

  white-space: nowrap;
}
