/* POMOĆ MAČKAMA */
.pomoc-mackama {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:20px;
  background-color: rgb(212 163 115);
  padding: 20px 0;
  /* background-image: url('https://cdn.pixabay.com/photo/2023/07/20/05/32/grass-8138399_1280.jpg'); */
}

.pomoc-mackama .tekst {
  width: 550px;
  background-color: rgb(253 232 211);
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
}

.pomoc-mackama h3 {
  font-size: 26px;
  padding: 0px 30px 10px 30px;
}

.pomoc-mackama p {
  text-align: justify;
  padding: 0 30px 10px 30px;
}

.prostor-slike {
  width: 550px;
  height: 413px;
  background-color: rgb(253 232 211);
  border-radius: 4px;
}

.prostor-slike img {
  width: 100%;
  height: 100%;
}

@media (width<1119px) {
  .pomoc-mackama {
    flex-wrap: wrap;
  }

  .pomoc-mackama .tekst {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .pomoc-mackama h3 {
    text-align: center;
  }

  .prostor-slike {
    height: 400px;
  }
}

@media (width<801px) {
  .pomoc-mackama p {
    font-size: 18px;
  }
}

@media (width<570px) {
  .pomoc-mackama p {
    font-size: 16px;
  }
}

/* KRAJ POMOĆI MAČKAMA */