/* NASLOVNI TEKST  */
.naslovni-tekst {
  text-align: center;
  background-color: rgb(212 163 115);
  padding: 12px 0;
  margin-top: 40px;
}

.naslovni-tekst p,
.naslovni-tekst h3 {
  padding: 6px;
  margin: 0;
}

.naslovni-tekst p {
  font-family: italic;
  font-size: 17px;
}

/* KRAJ NASLOVOG TEKSTA */

/* TEKST I SLIKA */
.kontejner-oba-teksta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 50px 0 100px 0;
}

.tekst-slika1 {
  margin-bottom: 100px;
}

.tekst-slika1,
.tekst-slika2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  background-color: rgb(212 163 115);
}

.tekst-slika1 .tekst,
.tekst-slika2 .tekst {
  box-sizing: border-box;
  width: 550px;
  background-color: rgb(253 232 211);
  text-align: justify;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  border-radius: 6px;
}

.tekst-slika1 h4,
.tekst-slika2 h4 {
  text-align: center;
  padding-bottom: 10px;
  font-size: 25px;
}

.tekst-slika1 .prostor-slike,
.tekst-slika2 .prostor-slike {
  width: 550px;
  height: 413px;
  border-radius: 6px;
}

.tekst-slika1 .prostor-slike img,
.tekst-slika2 .prostor-slike img {
  width: 100%;
  height: 100%;

}

@media (width<1119px) {

  .tekst-slika1,
  .tekst-slika2 {
    flex-wrap: wrap;
  }

  .tekst-slika2 .tekst {
    max-width: 100%;
  }

  .tekst-slika2 {
    flex-direction: column-reverse;
  }
}

@media (width<555px) {
  .kontejner-oba-teksta {
    font-size: 12px;
  }

  .kontejner-oba-teksta h4 {
    font-size: 16px;
  }

  .tekst-slika1 .prostor-slike,
  .tekst-slika2 .prostor-slike {
    height: 300px;
    width: 300px;
  }

  .tekst-slika1 .tekst,
  .tekst-slika2 .tekst {
    width: 300px;
  }
}

/* KRAJ TEKSTA I SLIKE */