body {  
    background-color:#66023c;
    background-image:url("../gifs/backgroundGif.gif");
    max-width: 1400px;
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
}

.window {
  font-family: "Comic Sans MS", sans-serif;
  background-color:#FFC5D3;
  color:#BFA8FF;
  margin: 20px;
  padding: 20px;
  }
  
  /* nav-bar */
.nav-bar {
  display: flex;
  justify-content: space-evenly;
  align-items: center; 
  flex-wrap: wrap;
  box-sizing: border-box;
  line-height: 40px;
  height: 50px; 
}

.nav-barBtns {
  font-family: "Comic Sans MS", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FBD5FF;
  color: #66023c;
  background-color: #FBD5FF;
  border-radius: 12px;
  padding: 8px;
  margin: 2px;
  height: 20px;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
}

/* headline */
.headline-container {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-wrap: wrap;
}

@font-face {
  font-family: 'silly';
  src: url('/fonts/silly.ttf') format('truetype');
}

.headline {
  font-size: 80px;
  text-align: center;
  font-family: 'silly', sans-serif;
  color: #eb88e4;
  margin-top: 10px;
  margin-bottom: 10px;
}
/*---main part---*/

.topBar {
  width: 100%;
  background-color: #812158;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 12px;
  

}
.topBarContent {
  max-width: 1200px;
  max-height: 50px;
  margin: 0 auto;
  padding: 1em 2em;
  display: flex;
  flex-wrap: nowrap;         
  justify-content: center;    
  align-items: center;       
  gap: 6em;                   
  overflow: hidden;           
}


/* selection */

.select1Wrapper,
.select2Wrapper,
.select3Wrapper,
.selectRandWrapper{
  display: flex;
  gap: 1em;
}

.select {
  width: 70px;
  height: 70px;
  background-color: #FFEBF5; 
  border: 2px solid #FBD5FF; 
  border-radius: 10px;
  color: #66023c;
  font-family: "Comic Sans MS", sans-serif;
  justify-content: center;
  align-items: center;
  text-align: center;
}


/* main content boxes */

.selectContentGrid {
  display: grid;                             
  grid-template-columns: 35% 1fr;            
  gap: 2em;                                  
  max-width: 1200px;                         
  margin: 2em auto;                          
}


.selectImgWrapper {
  border-radius: 12px;
  height: 300px;
  width: 100%;
}

.selectSection {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 10px;
}

.selectSecondBox {
  background-color: #FFD6EB;    
  border: 2px solid #FBD5FF;   
  border-radius: 12px;
  height: 300px;               
}

/* button stuff */
.selectLink {
  text-decoration: none;        
  display: inline-block;      
}

.selectLink .select {
  cursor: pointer;            
  transition: transform 0.2s ease;
}

.selectLink .select:hover {
  transform: scale(1.05);       
}

#hoverGif {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease;
}

#hoverScript {
  color: #66023c;
  font-family: "Comic Sans MS", sans-serif;
  font-size: 1rem;
  padding: 15px;
  transition: all 0.5s ease;
}



























