/* Global Styles */
#body-container {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Header */
h1 {
  text-align: center;
  margin: 20px 0;
  font-size: 2rem;
  color: #333;
}

/* Image Container */
.image-container {
  display: flex;
  flex-direction: column; /* Ensures one image per row */
  gap: 20px; /* Spacing between images */
  padding: 20px;
  width: 100%;
  max-width: 800px; /* Optional: Limit container width for large screens */
}

/* Image Styling */
.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Media Queries for Small Screens */
@media (max-width: 768px) {
  .image-container {
    padding: 10px;
    gap: 15px;
  }

  h1 {
    font-size: 1.5rem;
  }
}
