body{
  background-color: #080a08;
  font-family: 'Afacad', sans-serif;
  /* font-family: 'Noto Sans Mono', sans-serif; */
  font-size:20px;
  color: #b8b18c;
  margin: 0;
  padding: 0;
}

#headerbox{
  /* border:5px solid red; */
  top: 0;
  left: 0;
  width:100%;
  position: sticky;
  background-color: #10120f;
  display:flex;
  flex-wrap: wrap;
  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);
  padding:5px;
}

#header h1{
  margin: 0px;
  font-size: 50px;
}

#headerlist{
  flex:1;
  flex:50%;
  display:flex;
  position:sticky;
  flex-wrap: wrap;
} 

.listitem {
  margin:auto;
  font-size:25px;
}
  
.headercolumn{
  margin:5px;
  flex:1;
  max-width: 100%;
}

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;
}

hr{
  border-color: rgb(102, 106, 72);
  margin:15px;
}

#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;
  justify-content: center;
  align-items: center;
}

#grid-container {
  /* border: 5px solid blue; */
  /* background-color:  #1f231d; */
  border-radius: 15px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width:90%;    
  gap: 15px;
}

.LG-grid-item {
  /* border: 2px solid red; */
  border-radius: 15px;
  flex:1;
  flex-basis:450px;
  min-width: 0;
}  

.grid-item:hover .overlay {
  opacity: 1;
}

.LG-grid-item img {
    /* border: 2px solid yellow; */
    background-size:contain;
    align-items: center;
    height:auto;
    max-width: 100%;
  }

.LG-grid-item .textbox {
    /* border: 2px solid rgb(102, 106, 72); */
    border-radius: 15px;
    padding:20px;
    /* background-color: #10120f; */
    background-size:contain;
    align-items: center;
    height:auto;
    max-width: 100%;
  }
  
  .caption{
    color: rgb(102, 106, 72);
    margin-top: auto;
    font-size: 25px;
    text-align: center;
    padding:10px;
  }

  #main{
    display: block;
    overflow: auto;
    margin: auto; 
    border-radius:15px;
    width:100%;
    height:90%;
    justify-content: center;
    align-items: center;
  }
  
  #footerlist{
    display:flex;   
    margin:auto;
    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;
  }
