/* @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,100&display=swap"); */

/* * {
  box-sizing: border-box;
} */

.galerija p {
  margin-top: 15px;
  font-size: 1.8rem;
  text-transform: uppercase;
  text-align: center;
}
.galerija {
  background-color: rgba(241, 229, 229, 0.945);
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
  /* width: 100vw; */
  overflow: hidden;
  margin: 0;
}
.gal-kol {
  display: flex;
  width: 90vw;
}
.panel {
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  border-radius: 50px;
  color: rgb(38, 129, 233);
  cursor: pointer;
  flex: 1.2;
  margin: 10px;
  position: relative;
  transition: flex 0.7s ease-in;
}
.panel h3 {
  font-size: 24px;
  position: absolute;
  border: 20px;
  left: 50px;
  margin: 0;
  opacity: 0;
}
.panel.active {
  flex: 5;
}
.panel.active h3 {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
}
@media (max-width: 700px) {
  .galerija > * {
    width: 90vw;

    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
  }
  .panel:nth-of-type(4),
  .panel:nth-of-type(5),
  .panel:nth-of-type(6) {
    display: none;
  }
}
