*
  body{
    /* background-color: black; */
    background-image: linear-gradient(to bottom right, #050505, #3b3027); 
  }
  {
    box-sizing: border-box;
  }
  
  .slideshow-container {
    max-width: 1152px;
    max-height: 864px;
    margin: auto;
    position: relative;
    overflow: hidden;
  }
  
  .slide {
    width: 100%;
    height: 1000px;
    display: none;
    /* background-position-x: ;  */
    top: 0;
    left: 0;;
    
  }
  .slide img {
    object-fit: contain; 
    width: 100%;
    height: 100%;
  }
 
  .prev, .next {
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .active {
    display: block;
  }
  /* Style the dot elements */
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background-color: #1e5adb;
  border-radius: 50%;
  cursor: pointer;
  
}

/* Style the active dot */
.active, .dot:hover {
  background-color: #717171;
}
.dot-container{
text-align: center;
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {opacity: .2}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .2}
  to {opacity: 1}
}



