.foto {
  transform: scale(1);
  transition: transform 0.3s;
  cursor: pointer;
}

.foto:hover {
  transform: scale(1.1);
}

.popup {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.2s;
  justify-content: center;
  flex-wrap: wrap;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.hidden {
  display: none;
}

.fade-out {
  animation: fadeOut 0.3s both;
}

.popupClose {
  position: absolute;
  top: 10;
  right: 10;
}

.popupImg {
  max-width: 90vw;
  max-height: 90vh;
}

.buttonRight,
.buttonLeft {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  top: 50%;
}

.buttonRight,
.buttonLeft, .popupClose {
  background-color: rgba(255, 255, 255, 0.4);
  font-size: 30px;
}

.buttonRight {
  right: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}/*# sourceMappingURL=galery.css.map */