/* Style the main gallery area */
#main {
  background-color: #ffe5e5; /* light red background */
  padding: 20px;
  text-align: center; /* center the content horizontally */
}

/* Style each photo block */
.photos {
  display: inline-block;
  margin: 10px;
  border: 3px solid red;
  border-radius: 12px;
  background-color: #fff;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Add a hover effect for interaction */
.photos:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

/* Style the images themselves */
.photos img {
  width: 200px;
  height: auto;
  border-radius: 8px;
}
