.kompleks {
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 10px rgba(92, 83, 3, 0.7);
  margin: 10px 0 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(rgba(232, 219, 167, 0.9)),
    url(../img/CU-short.png);
  background-position: left;
  background-size: cover;
}

.kompleks .museum,
.kompleks .home,
.kompleks .school {
  display: flex;
  width: 100%;
}

.kompleks .museum .text,
.kompleks .home .text,
.kompleks .school .text {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 10px 10px rgba(92, 83, 3, 0.7);
  padding-bottom: 30px;
}

.kompleks .museum .text {
  background-image: linear-gradient(rgba(250, 250, 250, 0.95)),
    url(../img/narodni_dom.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.kompleks .home .text {
  background-image: linear-gradient(rgba(250, 250, 250, 0.95)),
    url(../img/rodna_kuca.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.kompleks .school .text {
  background-image: linear-gradient(rgba(250, 250, 250, 0.95)),
    url(../img/stara_skola.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.kompleks .museum .text h2,
.kompleks .home .text h2,
.kompleks .school .text h2 {
  color: rgb(152, 61, 58);
  line-height: 5em;
  font-size: 2em;
  font-family: "Times New Roman", Times, serif;
}

.kompleks .museum .text p,
.kompleks .home .text p,
.kompleks .school .text p {
  color: #333;
  width: 80%;
  line-height: 2em;
  text-align: justify;
}

.kompleks .school .text p {
  padding-bottom: 100px;
}

.kompleks .museum .text_pic,
.kompleks .home .text_pic,
.kompleks .school .text_pic {
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.kompleks .museum .text_pic img,
.kompleks .home .text_pic img,
.kompleks .school .text_pic img {
  width: 100%;
  margin: 170px 40px 0 0;
  box-shadow: 0px 10px 10px rgba(92, 83, 3, 0.7);
  filter: grayscale(1);
  transition: filter 0.5s;
}

.kompleks .museum .text_pic img:hover,
.kompleks .home .text_pic img:hover,
.kompleks .school .text_pic img:hover {
  filter: grayscale(0);
}

.text {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0;
}

@keyframes appear {
  from {
    opacity: 0;
    scale: 0.9;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

@media (max-width: 767px) {
  .kompleks .museum .text_pic img,
  .kompleks .home .text_pic img,
  .kompleks .school .text_pic img {
    display: none;
  }

  .kompleks .museum .text_pic,
  .kompleks .home .text_pic,
  .kompleks .school .text_pic {
    display: none;
  }

  .kompleks .museum .text,
  .kompleks .home .text,
  .kompleks .school .text {
    width: 100%;
  }
}

@media (max-width: 574px) {
  .kompleks .museum .text h2,
  .kompleks .home .text h2,
  .kompleks .school .text h2 {
    font-size: 1.5em;
  }
}

@media (max-width: 434px) {
  .kompleks .museum .text h2,
  .kompleks .home .text h2,
  .kompleks .school .text h2 {
    font-size: 1em;
  }
}
