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;
}

#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: 10px;
}

#grid-container {
  /* border: 5px solid blue; */
  /* background-color:  #10120f; */
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  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; */
  color: rgb(212,194,121);
  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;
}


#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;
}
