body{
    /* background-image: url('https://y3llowradish.neocities.org/hackerbackground.jpg'); */
    background-color: black;
    font-family: 'Share Tech Mono', sans-serif;
    margin:auto;
  } 

#container{
  margin:0px;
}

#box{
  position:sticky;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0px;
  margin:0px;
  width:100%;
  background-color: #2a3028;
}

#headerbox{
  display:flex;
  margin:10px;
  gap:5px;
}
  #header{
    width:50%;
    flex-wrap: wrap;
    word-break: break-word;
    position:sticky;
    right:60px;
    color:  rgb(212,194,121);
    letter-spacing: 10px;
    font-size: 25px;
    font-family: 'Gajraj One', sans-serif;
  }
  
  #header h1{
    margin: 0px;
    font-size: 50px;
  }
  
  #headerlist{
    display:flex;
    position:sticky;
    justify-content: right;
    align-items: right;
    margin: auto;  
    padding:10px;
    float:right;                                            
  }
  
  .listitem {
    margin-right:50px;
    font-size:20px;
    color:#7179b1;
  }
  
  .listitem img{
    margin-left:100px;
    width:300px;
  }
  
  #main{
    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:rgb(212,194,121);
    display: block
  }
  
  a:hover{
    text-shadow: 0px 0px 2px #78beff;
    display: block
  }
  
  
/* SLIDESHOW CODE*/
.container{
  padding: 2rem;
}

.slider-wrapper{
  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{
  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{
  flex: 1 0 100%;
  scroll-snap-align: start;
  object-fit:cover;
}

.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 */
}

