/* 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 {
  color: #044781;
  text-align: center; 
  font-family: times-new-roman;
  background-image: url(space-pixels-3.png);

}

.background-overlay {
 background: url(blank.png) no-repeat center center;
 background-size: contain;
 opacity: 1; /*Faded to make text more readable */
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 pointer-events: none; /* Ensures clicks go through */
 z-index: 1;
 
}

.marquee-text {
  
 flex-grow: 1;
 margin: 0 10px;
  
}

.marquee-inner-text {
 
 font-weight: bold;
 text-shadow:
  1px 1px 0 #00f,
  2px 2px 0 #0ff,
  3px 3px 0 #00f;
 font-size: 36px
 
  
  }

.dragon-banner {
  display: flex;
  z-index: 2;
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
}

.dragon {
  
  height: 300px;
}

/* 👇 This flips the right dragon horizontally */
.right-dragon {
  transform: scaleX(-1);
}



.spinning-text {
 
 font-size: 36px;
 color: cyan;
 font-weight: bold;
 text-shadow:
  1px 1px 0 #00f,
  2px 2px 0 #0ff,
  3px 3px 0 #00f;
animation: spin 5s linear infinite;
margin-top: 20px;
transform-origin: center;
display: inline-block;
z-index: 2;
position: relative;
    
}

@keyframes spin {
  
 0% { transform: rotateY(0deg); } 
 100% { transform: rotateY(360deg); }
  
}

.content {
 
 position: relative;
 z-index: 2;
 padding: 2rem;
  
}