header {
    background-color: rgba(0, 0, 0, 0.3);
}

.gallery-section {
    padding-top: 80px;
    padding-bottom: 20px;
}

.back-button button {
    color: black;
    padding: 10px;
    position: absolute;
}

button:hover {
    color: rgba(255, 39, 127, 1);
}

.gallery-title {
    padding: 20px;
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
.image-container {
    position: relative;
    display: inline-block;
}
  
.gallery img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.gallery img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}