/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  width: 6000px;
  height: 6000px;
  margin: 0;
  overflow: auto;
  font-family: Courier;
  background-color: black;
}

/* --- Background layers --- */
.bg-galaxy {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("GALAXYback.jpg") repeat top left / auto;
  z-index: -4;
}

.bg-eye {
  position: absolute;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: url("eye.gif") no-repeat center center / contain;
  z-index: -2;
  pointer-events: none;
}

.bg-rayo {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("rayo.gif") no-repeat center center / cover;
  opacity: 1.0;
  z-index: -3;
  animation: moveRayo 60s linear infinite alternate;
}

@keyframes moveRayo {
  0% { transform: scale(1) translate(0, 0); opacity: 0.25; }
  50% { transform: scale(1.05) translate(10px, -10px); opacity: 0.35; }
  100% { transform: scale(1) translate(0, 0); opacity: 0.25; }
}

/* --- Main canvas area --- */
.canvas {
  position: relative;
  width: 6000px;
  height: 6000px;
  z-index: 0;
}

/* --- Collage images --- */
img {
  position: absolute;
}
