/* General Page Setup */
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #111;
  color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
header {
  padding: 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid #333;
}

header h1 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Gallery Layout */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 90%;
  max-width: 1200px;
  padding: 3rem 0;
}

.artwork {
  text-align: center;
}

.artwork img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artwork img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.artwork h2 {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: #ccc;
}

/* Footer */
footer {
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid #333;
  width: 100%;
  color: #aaa;
}

footer a {
  color: #aaa;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}
