/* Set the entire page background to black */
body {
  background-color: black;
  color: white; /* Optional: Set text color to white for better visibility */
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Optional: Adjust the header and footer colors if needed */
header {
  background-color: #111; /* Darker black for header */
  color: white;
  padding: 10px;
  text-align: center;
}

/* Center the gallery content */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

/* Style the text above the gallery images */
.gallery h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: white;
}

/* Style the images */
.gallery img {
  width: 300px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

/* Hover effect on images */
.gallery img:hover {
  transform: scale(1.05);
}

/* Footer styling */
footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Media query for mobile devices */
@media (max-width: 600px) {
  .gallery {
    flex-direction: column; /* Stack images vertically */
    align-items: center;
  }

  .gallery img {
    width: 90%; /* Make images take most of the screen width */
    max-width: 400px; /* Optional: Limit the max width */
  }

  header {
    font-size: 1.5rem;
  }

  footer {
    font-size: 0.9rem;
  }
}