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;
}

p{
  letter-spacing: 1px;
}

hr{
  border: none; 
  height:3px;
  vertical-align: middle;
  clear:bottom;
  margin:20px;
  background-color:rgb(102, 106, 72);
}
  
#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%;
}

#box{
  display:flex;
  background-color: #10120f;
  border-radius:15px;
  margin:20px;    
  /* border:5px solid blue; */
}

.row {
  /* border:5px solid blue; */
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
  margin:5px;
}

.column {
  /* border:5px solid pink; */
  margin:5px;
  flex:1;
  max-width: 100%;
}

.column img{
  margin:5px;
  width:100%;
  vertical-align: middle;
  object-fit: contain;
}

  
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

.item:hover{
  box-shadow: 0px 0px 5px #78beff;
}

.titlecaption{
  text-align: center;
  color: #070806;
  font-size: 25px;
  text-align:left;
  grid-row: 2 / 2;
  margin-bottom:10px;
  margin-top:10px;
}

.caption{
  text-align: center;
  justify-content: center;
  vertical-align: center;
  color: rgb(102, 106, 72);
  font-size: 25px;
  margin:auto;
  clear:bottom;
  padding:10px;
}

#main{
  /* border:5px solid blueviolet; */
  display:inline-block;
  /* overflow-y: scroll; */
  /* border-radius:15px; */
  width:100%;
  height:100%;
}

.mainboxes{
  justify-content: center;
  align-items: center;
  width:100%; 
  height: auto;
  margin: auto;
  /* border:5px solid red; */
}

#grid-container {
  /* border: 5px solid blue; */
  background-color:  #10120f;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  width:90%;
  justify-content: center;
  align-items: center;
  float:center; 
  flex-direction: row;
  gap:20px;
}

.grid-item {
  /* border: 2px solid red; */
  flex:1;
  flex-direction: column;
  flex-grow: 1;
  padding: 10px;
  margin: auto;
}  

#footerlist{
  flex-wrap: wrap;
  display:flex;   
  margin:auto;
  padding:20px;
  justify-content: center;
  align-items: center;
  gap:10px;
}

.textbox{
  border-radius: 50px;
  text-align: center;
  background-color:  #2a3028;
}

.textbox .textfield{
  font-size: 20px;
  border-radius: 20px;
  background-color: #2a3028;
  text-align: left; 
  margin-left:20px;
  margin-right:20px;
  margin-top:20px;
  margin-bottom:20px;
  padding:20px;
  clear: left;
}

#footerlist a{
  color: #7179b1;
}

a:link{
  text-decoration: none;
  display: block;
  color: #7179b1;;
}

a:visited{
  color:#7179b1;
  display: block
}

a:hover{
  text-shadow: 0px 0px 2px #78beff;
  display: block
}

/* collapsible content ---------------------*/
.wrap-collabsible {
 display:grid;
 /* width:1300px; */
 /* width:100%; */
}

input[type='checkbox'] {
  display: none;
}

.lbl-toggle {
  display: block;
  font-size: 25px;
  text-align:left;
  float:left;
  padding: 1rem;
  background-color: #2a3028;
  color:#7179b1;

  cursor: pointer;

  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.lbl-toggle:hover {
  text-shadow: 0px 0px 2px #78beff;
}

.lbl-toggle::before {
  content: ' ';
  display: inline-block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  margin-right: .7rem;
  transform: translateY(-2px);
  transition: transform .2s ease-out;
}

.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
  width:1300px;
  max-height: 0px;
  display:flex;
  overflow: auto;
  transition: max-height .25s ease-in-out;
  /* border:5px solid #2196F3; */
}

.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: 100vh;
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
  background: #4a5447;
  padding: .5rem 1rem;
  width:2000px;
  height:auto;
}
/* collapsible content ---------------------*/