



.logo2 {
  width: 50px; 
  height: 50px;
  margin-right: 15px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.photo {
  background-color: #cacaca;
  margin: 10px;
  padding: 10px;
  width: 250px;
  border-radius: 23px;
}


.photo img {
  width: 100%;  
  height: auto; 
  max-height: 400px; 
  object-fit: cover; 
  border-radius: 23px;
}

.photo:nth-child(even) {
  background-color: gray;
}

p {
  background: gray;
  border-radius: 23px;
  padding: 10px;
  color: white;
  text-align: center;
}


.Vmobile{
  display: none; /* Ukryj wersję mobilną domyślnie */
}

.PC {
  display: block; /* Domyślnie wersja PC jest widoczna */
}

@media (max-width: 768px) {
  .PC {
      display: none; /* Ukryj wersję PC na małych ekranach */
  }
  .Vmobile {
      display: block; /* Pokaż wersję mobilną */
  }
}

