body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  background-color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.main-link {
  position: absolute;
  top: 20px;
  left: 30px;
  text-decoration: none;
  color: black;
  font-size: 14px;
  letter-spacing: 1px;
  z-index: 3;
}

.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 100%;
  padding-top: 60px;
  flex-wrap: wrap;
  z-index: 2;
}

.card {
  position: relative;
  width: 350px;
  height: 600px;
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

.card .label {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 26px;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

.card:hover {
  transform: scale(1.03);
}

.card:hover img {
  filter: brightness(1.15);
}

/* Tło z gwiazdami */
canvas#stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: white;
  pointer-events: none;
}

@media (max-width: 768px) {
  .card {
    width: 200px;
    height: 343px;
  }

  .card .label {
    font-size: 15px;
    top: 75%;
  }

  .gallery {
    gap: 30px; /* zmniejszony odstęp między kartami */
  }
}


