/* Background styling */
body {
  background-image: url("background.jpg");  /* make sure your image file name matches */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
}

/* Layout for the set page */
.set-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin: 20px;
}

/* Column of images */
.set-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual image styling */
.set-thumb {
  width: 350px;
  border-radius: 8px;
}

/* Back link button */
a.back-link {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 12px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

/* Responsive on mobile */
@media (max-width: 760px) {
  .set-layout {
    flex-direction: column;
    align-items: center;
  }

  .set-images img {
    width: 90%;
  }
}
