body {
    margin: 0;
    padding:0;
    font-family: Arial, sans-serif;
    overflow: auto; /* Allow scrolling */
    height: auto;
    background-image:  url('images/game_background.png');
}

/*.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:auto;
    z-index: -1;
    transition: opacity 2s ease-in-out;
    background-image:  url('images/game_background.png');
    
    background-size:cover;

}*/

#banner {
  position: relative;
  top: 0;
 
  width: 100%;
  height: 150px; /* Adjust as needed */ 
  background-color: #000; /* Optional background */
  z-index: 2;
}

#banner img {
  width: 100%;
  height: 100%;
 
}
#mainNav {
  position: relative;
  /*top: 150px; /* directly under the banner */
  width: 100%;
  background-color: #222;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 12px 0;
  z-index: 5;
  border-bottom: 3px solid cyan;
}

#mainNav a {
  color: cyan;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

#mainNav a:hover {
  text-decoration: underline;
}


#flyImage { 
  z-index: 15;
  position: fixed;
  top: 125px;           /* Vertical position on screen */
  left: -120px;         /* Start just off-screen left */
  width: 100px;
  height: 100px;
  animation: shootAcross 2s forwards ease-in-out
    
}

@keyframes shootAcross {
  0% {
    left: -120px;       /* Off-screen to the left */
    opacity: 1;
  }
  80% {
    left: 100vw;        /* All the way to the right */
    opacity: 1;
  }
  100% {
    left: 100vw;
    opacity: 0;         /* Fade out at the end */
    display: none;
  }
}



.h1_container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height:50px;
   
    margin-bottom: 25px;
    background-color: black;
    
   
  
}


   
#moduleContainer {
   background: rgba(0, 0, 0, 0.6);
   
  /* display: flex;*/
   height: auto;
   /* flex-wrap: wrap;*/
   max-width: 600px;
  margin: auto;
  padding: 10 10 10 10;
  border: 2px solid yellow;     
  border-radius: 25px;
  box-shadow: 5px 5px 5px #e65ce6;
}

.module {
   
    color: White;
    font-size: 25px;
    padding-left: 20px;
    padding-top: 10px;
     width: 100%;
    flex-wrap: wrap;
}


.rarityImage{
   
    float: right;
    width: 350px;
    height: 350px;


}

h1 {

      color:Yellow;
      text-align:center;
    


}
h2 {
    background-color: #000000;
     color: Yellow;
     width:500px;
     margin: auto;
     border: 2px solid yellow;


}

.calcButtons{

     float:auto;
    width:500px;
     padding-top: 20px;
     margin: auto;
}




/* Add more CSS styles as needed */
