@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');

/* #slide-window
  {
  position: relative;
  width:100%;
  height:75vh;
  overflow:hidden;
  top:0px;
  left:0px;
  }

#slides
  {
    width: 100%;
  height:100%;  
  position:relative;
  margin:0px;
  padding:0px;
  
  -webkit-transform: translate3d(0px,0px,0px);
  transform: translate3d(0px,0px,0px);
    
  transition: all 0.66s ease; -webkit-transition: all 0.66s ease; 
  
  }

.slide 
  {
  list-style:none;
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #ccc;
  text-align: center;
  line-height: 300px; 
  background-size: contain; 
  background-position:50% 50%;
  background-repeat: no-repeat;
  color:#fff;
  -webkit-transform: translate3d(0px,0px,0px);
    visibility:hidden;
  -webkit-transform-style: preserve-3d;
  }

.alive { visibility:visible; }

.nav 
  { 
  position:fixed; 
  z-index:9; 
  top:50%; 
  cursor:pointer; 
  color:#fff; 
  opacity:0.7; 
  transition: all 0.66s ease; -webkit-transition: all 0.66s ease; 
  }

.nav:hover { opacity:1.0; }
#left {
  position: absolute;
  left:3%; border: 1px solid black;padding: 10px;}
#right { right:3%;border: 1px solid black;padding: 10px; }


#credit 
  { 
  position:fixed; 
  top:25px; 
  left:25px; 
  color:#eaeaea; 
  font-family: 'Courier New', Courier, monospace;  
  }
 */

#main{
   border-radius: 10px;
    height: 400px;
    width: 80%;
    font-family: 'Lilita One', sans-serif;
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    gap: 30px;
    position: relative;
}


#wrapper{
    height:400px;
    width: 100%;
    display: flex;
    /* flex-direction: row; */
    /* border-radius: 10px; */
    padding: 0px 0px;
    justify-content: space-around;
    align-items: center;
    /* gap: 20px; */
    box-sizing: border-box;
    /* position: relative; */
    
}

#wrapper i{
    font-size: 15px;
    pointer-events: none;
    /* color: white;*/
}
#image-container{
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;


}
#image-carousel{
    height: 100%;
    width: 100%;
    display: flex;
    background-color: white;
    position: relative;
    border-radius: 10px;
    margin:0 auto;

}
#image-carousel .slider-img{

    height: 100%;
    width: 100%;
    object-fit: cover;
    background-position: center top;
    transition: 1s; 
    padding: 0px 0px;
    position: absolute;
    /* border-radius: 10px; */

}

/* New */
.about-pae {
    height: 200px;
    border-radius: 20px;
    padding: 20px;
    background-color: #ebedea;
    border: 1px solid black;
    box-shadow: 3px 3px 1px 1px;
    width: 50%;
}

.button-container {
    display: flex;
    gap: 10px; /* Adds space between buttons */
    margin-top: 30px;
}

.about-pae button {
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 10px;
    background: linear-gradient(to left, #004e92, #000428);
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.about-pae button img {
    margin-right: 10px;
}

.about-pae button:hover {
    transform: scale(1.1);
    opacity: 0.9;
    cursor: pointer;
    border: 1px solid wheat;
    box-sizing: border-box;
}

.about-pae h1 {
    color: #021b79;
}

.about-pae p {
    color: black;
}

#next
{
  right: 10px;
}
#prev
{
  left: 10px;
}
#wrapper button{
    
 position: absolute;
    z-index: 30;
    cursor: pointer;
    padding: 6px;
    width:30px;
    background-color: #406399;
    opacity: 0.8;
    border-radius: 50%;
    border: none;
}


#wrapper button:hover{
 background-color: #011D4c;
 opacity: 0.8;
 color:white;
 border: 1px solid white;

}

