/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & typography */
body {
  background-color: #0a0a0a; /* same dark background as main page */
  color: #ddd;
  font-family: sans-serif;
  text-align: center;
  padding: 40px;
}

/* Heading */
h1 {
  color: #d28eff; /* purple */
  margin-bottom: 30px;
  font-size: 3em;
}

/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

/* Individual art piece */
.art-piece img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.credit {
  margin-top: 5px;
  font-size: 0.9em;
  color: #ff82d2; /* pink accent for credits */
}

/* Return home link */
.home-link a {
  text-decoration: none;
  color: #d28eff; /* purple */
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
