body{
    background-color: #10120f;
    font-family: 'Share Tech Mono', sans-serif;
  }
  
  p{
    letter-spacing: 1px;
  }

  h2{
    color: rgb(212,194,121);
    float:left;
  }

  h3{
    color: rgb(102, 106, 72);
    text-align: center;
    font-size: 25px;
    grid-row: 2 / 2;
    margin-bottom:10px;
    margin-top:10px;
  }

  #box{
    height:100%;
    width:100%;
    display:flex;
    background-color: #10120f;
    padding:10px;     
  }

  .mainboxes{
    /* border:5px solid red; */
    display: flex;
    flex-wrap: wrap;
    margin: auto;                                                 
    width:90%; 
    gap: 20px;
  }

  #grid-container {
    /* border: 5px solid blue; */
    background-color:  #1f231d;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: auto;
    width:100%;
    justify-content: center;
    align-items: center;
  }

  .grid-item {
    /* border: 2px solid red; */
    position: relative;
    flex:1;
    flex-grow: 1;
    flex-basis: 300px;
    padding: 10px;
    gap: 10px;
    margin: auto;
  }  

  .LG-grid-item {
    /* border: 2px solid red; */
    background-color:  rgb(102, 106, 72);
    position: relative;
    flex:1;
    flex-direction: column;
    flex-grow: 1;
    padding: 10px;
    gap: 10px;
    margin: auto;
  }  

  .grid-item:hover .overlay {
  opacity: 1;
}

  .image {
    /* border: 2px solid yellow; */
    background-size:cover;
    background-position: center;
    border-radius:15px;
    text-align: center;
    padding: 20px 0;
    margin:auto;
    min-height:300px;
    max-height:500px;
  }

  
.overlay {
  border-radius:15px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .4s ease;
  background-color: #7179b1;
}


.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

  
  .caption{
    color: rgb(102, 106, 72);
    margin-top: auto;
    font-size: 25px;
    text-align: center;
    padding:10px;
  }

  #main{
    display: inline-block;
    overflow: auto;
    margin: auto; 
    border-radius:15px;
    width:100%;
    height:90%;
    justify-content: center;
    align-items: center;
  }
  

#headerbox{
  /* border:5px solid red; */
  display:flex;
  flex-wrap: wrap;
  margin: auto; 
  flex-direction: row; /* Stack content vertically */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */  
}

#header{
    /* border:5px solid blue; */
    flex:50%;
    position:sticky;
    color: rgb(212,194,121);
    letter-spacing: 10px;
    font-size: 25px;
    font-family: 'Gajraj One', sans-serif;
    /* overflow: hidden; */
  }
  
  #header h1{
    margin: 0px;
    font-size: 50px;
  }
  
  #headerlist{
    flex:1;
    flex:50%;
    display:flex;
    position:sticky;
    flex-wrap: wrap;                                      
  } 

  .listitem {
    margin:auto;
    padding: 20px;
    font-size:20px;
    color:#7179b1;
  }
  
  .listitem img{
    margin-left:100px;
    width:300px;
  }

  #footerlist{
    flex-wrap: wrap;
    display:flex;   
    margin:auto;
    padding:20px;
    justify-content: center;
    align-items: center;
    gap:10px;
  }
  
  #footerlist a{
    color: #7179b1;
  }
  
  a:link{
    text-decoration: none;
    color: #7179b1;
  }
  
  a:visited{
    color: #7179b1;
  }
  
  a:hover{
    text-shadow: 0px 0px 2px #78beff;
  }
