/* 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 {
  background-color: black;
  color: white;
  font-family: "Comic Sans MS", cursive, sans-serif;
  font-size:150%;
  background-image: url("star.jpg");
  background-repeat: repeat;
  background-attachment: fixed; /* Optional: makes it stay in place */
  background-position: center center;
  margin: 0;
  min-height: 100vh;

}

.test {
 z-index: 1; /* content stays above scrolling image */ 
}
    .rainbow-text {
      
      
      background: url("prophecy2.jpg");
      background-size: 1400% 1400%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: rainbow 70s linear infinite;
      
    }
.scrolling-overlay2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("star.jpg");
  background-repeat: repeat; /* repeat both X and Y for a full tile effect */
  background-position: top left;
  background-size: auto;
  animation: scrollOcean 50s linear infinite;
  z-index: -1;
  opacity: 0.3;
  pointer-events: none;
}

.scrolling-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("prophecy.jpg");
  background-repeat: repeat; /* repeat both X and Y for a full tile effect */
  background-position: top left;
  background-size: 80% auto;
  animation: scrollOcean 60s linear infinite;
  z-index: -1;
  opacity: 0.17;
  pointer-events: none;
}

    @keyframes rainbow {
      0% { background-position: 0% 0%; }
      100% { background-position: 100% 100%; }
    }
    
@keyframes scrollOcean {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -200% -200%;
  }
}

    
@keyframes scrollOcean2 {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 200%;
  }
}


