.popup {
  display: none; /* ukryty domyślnie */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* przyciemnione tło */
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #1b1b1b;
  color: white;
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  max-width: 80%;
  max-height: 80%;
  overflow: auto;
}

.popup-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-title {
  text-align: center; /* wyśrodkowanie tekstu */
  width: 100%; /* upewnij się, że zajmuje całą szerokość kontenera */
  margin: 0; /* usuń domyślne marginesy h2 */
}

.popup-content img {
  max-width: 400px;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--main-color);
}

.popup-content h3 {
  text-align: end;
}

.popup-content #popup-text {
  max-width: 400px;
  font-size: 1rem;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}
/* media query dla małych ekranów */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column; /* obrazek nad tekstem */
    align-items: center;
  }

  .popup-content img {
    max-width: 90%;
    max-height: 50vh;
  }

  .popup-text {
    width: 100%;
    margin-top: 15px;
  }
}
