/* Reset default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Set a background color for the entire page */
  body {
    font-family: Verdana, sans-serif;
    background-color: #000;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  /* Slideshow container */
.slideshow-container {
    width: 70%; /* Increase width to 120% of the viewport width */
    height: 72vh; /* Increase height to 72% of the viewport height */
    position: relative;
    overflow: hidden; /* Clip the slideshow to the container */
    margin: auto; /* Center the slideshow */
    z-index: 1; /* Ensure this is higher than the z-index of the background */
  }
  
  
  
  /* Add a frame-like border to the slideshow */
  .slideshow-border {
    border: 10px solid #222; /* Create a border around the slideshow */
    border-radius: 20px; /* Add rounded corners to the border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
    width: 100%;
    height: 100%;
  }
  
  /* Each slide */
  .mySlides {
    display: none;
    width: 100%;
    height: 100%;
  }
  
  /* Make images fit the container without zooming or cutting */
  img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps the full image visible without cropping */
  }
  
  /* Caption text 
  .text {
    color: #f2f2f2;
    font-size: 18px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }*/

  .text {

  color: pink; font-weight: 900; position: absolute; bottom: 0; width: 100%; text-align: center; background: rgba(0, 0, 0, 0.7);}

  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 14px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 768px) {
    .text {
      font-size: 14px;
    }
    .numbertext {
      font-size: 12px;
    }
  }
  