<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  padding: 1rem;
}

/* Container for Images */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Individual Image Wrapper */
.image-item {
  flex: 1 1 200px; /* Grow, shrink, base width */
  width: 75%;
  min-width: 200px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  background: white;
}

/* Responsive Image */
.image-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.image-item:hover img {
  transform: scale(0.95);
}

/* Optional: Responsive Typography */
h1, h2, h3 {
  text-align: center;
  margin-bottom: 1rem;
}
</pre></body></html>