#photoGalleryDark {
        /*border: 10px solid red;*/
        /*background-color: rgb(87, 38, 8);*/
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Automatically adjust column count */
        gap: 20px; /* Equal spacing between items */
        padding: 20px; /* Optional padding around the gallery */
        max-width: 1200px; /* Restrict gallery width */
        margin: 0 auto; /* Center the gallery */

  }

  .threeDividersGalleryPhotoDark {
    width: 100%; /* Make images responsive to their container */
    height: auto; /* Maintain aspect ratio */
    aspect-ratio: 4/3; /* Optional: Maintain consistent aspect ratio (e.g., 4:3) */
    border-radius: 10px; /* Optional for rounded corners */
    object-fit: cover; /* Ensures image fits within grid cell */
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional for modern appearance */
  }
 
  
  /* Inside container for each divider */
  .insidePhotoGalleryDark {
    /*border: 3px solid rgb(7, 20, 83);*/
    width: 100%;
    min-width: 400px;
  }

  /* Image styling */
  .PhotoGalleryPhotoDark {
    width: 100%;
    border-radius: 20px;
    height: auto;
  }
  
  #titlePhotoGalleryDark {
        text-align: center;
        grid-column: span 3; /* Make the title span across three columns if needed */
        margin-bottom: 20px;
      }

      .image-container {
        padding: 10px; /* Optional padding around images */
      }

  /* Modal styles */
  #photoModal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Arrange content vertically */
  }
  
  #photoModal img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
  }
  
  #photoModal .photoCaption {
    position: absolute;
    bottom: 20px; /* Position the caption 20px from the bottom */
    left: 50%; /* Center the caption horizontally */
    transform: translateX(-50%); /* Offset by 50% of its width to perfectly center it */
    font-size: 36px;
    color: white;
    font-family: Arial, sans-serif;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
  }
  
  
  #photoModal .closeModal {
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 1001;
  }
  
  
  #photoGalleryDark img:last-child {
    object-fit: contain; /* Ensures the entire logo is visible within its container */
    /*background-color: rgb(115, 39, 9); /* Optional: Adds a background color to improve visibility for transparent PNGs */
    /*padding: 10px; /* Optional: Adds spacing inside the grid cell for the logo */
    /*border-radius: 10px; /* Matches the other thumbnails */

  }

  

  h1.black-text {
     color: black;
     font-size: max(2.2em, 4.4vw);
  }
  
  h1.red-text {
     color: red;
     font-size: max(2.2em, 4.4vw);
  }
  
  h1.green-text {
   color:rgb(6, 219, 80);
   font-size: max(2.2em, 4.4vw);
   font-weight: normal;
  }
  
  h1.white-text {
   color: rgb(255, 255, 255);
   font-size: max(2.2em, 4.4vw);
  }
  
  h2.black-text {
   color: rgb(0, 0, 0);
   font-size: max(1.5em, 3vw);
   font-weight: normal;
  }
  
  h2.red-text {
   color: rgb(255, 0, 0);
   font-size: max(1.5em, 3vw);
   font-weight: normal;
  }
  
  h2.green-text {
   color: rgb(6, 219, 80);
   font-size: max(1.5em, 3vw);
  }
  
  h2.white-text {
   color: rgb(255, 255, 255);
   font-size: max(1.5em, 3vw);
   font-weight: normal;
  }
  
  h3.black-text {
   color: rgb(0, 0, 0);
   font-size: max(1em, 2vw);
   font-weight: normal;
  }
  
  h3.red-text {
   color: rgb(255, 0, 0);
   font-size: max(1em, 2vw);
   font-weight: normal;
  }
  
  h3.gren-text {
   color: rgb(6, 219, 80);
   font-size: max(1em, 2vw);
   font-weight: normal;
  }
  
  h3.white-text {
   color: rgb(255, 255, 255);
   font-size: max(1em, 2vw);
   font-weight: normal;
  }
  
  h4.black-text {
   color: rgb(0, 0, 0);
   font-size: max(.8em, 1.6vw);
  }
  
  h4.red-text {
   color: rgb(255, 0, 0);
   font-size: max(.8em, 1.6vw);
  }
  
  h4.green-text {
   color: rgb(6, 219, 80);
   font-size: max(.8em, 1.6vw);
  }
  
  h4.white-text {
   color: rgb(255, 255, 255);
   font-size: max(.8em, 1.6vw);
   font-weight: 100;
  }
  
  h5.white-text {
   color: rgb(255, 255, 255);
   font-size: max(.6em, 1.2vw);
   font-weight: normal;
  }