
/* Styling for the gallery container */
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Styles for images within the gallery container */
.gallery-container .imagebox {
  width:30%;
  padding: 7px;
}

.gallery-container .imagebox:hover img {
  transform: scale(1.1); /* Enlarge the image by 10% (1 + 0.1 = 1.1) */
}	 

/* Styling for an image box container */
.imagebox {
  width: 270px; /* Set the desired width for the box */
  height: 300px; /* Set the desired height for the box */
  overflow: hidden; /* Hide any overflow from the image */
}

/* Styles for images within the image box */
.imagebox img {
  width: 100%; /* Make the image take the full width of the container */
  height: 100%; /* Make the image take the full height of the container */
  object-fit: cover; /* Maintain the aspect ratio and cover the container */
}

.gallery-heading {
  text-align: center;
}

.gallery-heading h6 {
  color: #DAA520; /* Change the "Media" heading text color to golden yellow */
  margin-bottom: 20px; /* Add some margin below the "Media" heading */
}