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;
}


#container{
  margin:0px;
}

#box{
  position:sticky;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0px;
  margin:px;
  width:100%;
  background-color: #2a3028;
}

#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%;
}
  
  #main{
    /* border:5px solid blue; */
    display: block;
    overflow: auto;
    margin: auto; 
    border-radius:15px;
    width:100%;
    height:90%;
    justify-content: center;
    align-items: center;
  }
  
  #footerlist{
    position:fixed;
    bottom:0px;
    display:flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  #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
  }
  
  
/* SLIDESHOW CODE*/
.container{
  padding: 2rem;
}

.slider-wrapper{
  /* border:5px solid blue; */
  display:flex;
  position: fixed; /* Fixes the container to the viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Hides any overflow from images */
  z-index: -1; /* Puts the slideshow behind the main content */
}

.slider{
  /* border:5px solid red; */
  display:flex;
  aspect-ratio: 16/9;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  box-shadow: 0 1.5rem 3rem -0.75rem
  hsla(0, 0%, 0%, 0.25);
  border-radius: 0.5rem;
}

.slider img{
  align-items: center;
  justify-content: center;
  flex: 1 0 100%;
  flex-grow: 1;
  scroll-snap-align: start;
  object-fit:cover;
  height:100%;
  width:100%;
}

.slider-nav{
  display: flex;
  column-gap: 1rem;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.slider-nav a{
  width:0.5rem;
  height:0.5rem;
  cursor:pointer;
  border-radius: 50%;
  background-color: #fff;
  border-color:red;
  border-radius: 5px;
  opacity: 0.75;
  transition: opacity ease 0.25s;
}

.slider-nav a:hover{
  opacity: 1;
}

.slider-indicators {
  position: absolute;
  bottom: 15px; /* Adjust distance from bottom */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px; /* Space between lines */
  z-index: 10;
}

.dot {
  width: 30px; /* Width of the line */
  height: 4px; /* Thickness of the line */
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: white; /* Active line color */
}

