.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.gallery-item {
  width: 300px;
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.back-link {
  font-size: 1.2rem;
  color: #907fad;
  text-decoration: none;
  font-family: 'typetwo';
}

.back-link:hover {
  text-decoration: underline;
  color: #909fad;
}
