/* General Page Setup */
body {
  background-color: #000;        /* Dark background for image contrast */
  margin: 0;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  justify-items: center;
  align-items: center;
  min-height: 100vh;
}

/* Image Styling */
img {
  width: 100%;
  height: auto;
  max-width: 400px;              /* Limit large images */
  border-radius: 10px;           /* Smooth edges */
  object-fit: cover;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover Effect */
img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Optional: Scroll behavior */
html {
  scroll-behavior: smooth;
}
