/* style.css */
.mosaic-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr)); /* Adjusted property */
    grid-auto-rows: auto; /* Allow rows to grow as needed */
    grid-gap: 10px; /* Increased gap between images for better visibility */
    justify-content: center; /* Center align the grid items */
}

.mosaic-container img {
    max-width: none; /* Allow images to expand beyond their original size */
    width: 100%; /* Make images fill their container */
    height: auto; /* Ensure images adjust proportionally */
    padding: 0px; /* Added padding to create a gap around each image */
    box-sizing: border-box; /* Include padding in the total width/height of the element */
    border-radius: 10px;
} 3 5 9 12 24 34 
/* Styling for the new button */
.btn-container {
    text-align: center;
    margin-top: 20px;
}

.btn-container a {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background-color: #FED641;
    color: #333;
    text-decoration: none;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 20px;

}
/* Style.css */
.navigation-links {
    font-size: 24px; /* Increase the font size for navigation links */
}
/* Dropdown Button */
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    background-color: #3e8e41;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {
    background-color: #3e8e41;
  }