body {
  background-image: url("https://static.tildacdn.com/tild6537-6534-4234-b335-373962633230/IMG_5053_3.JPG");
  background-size: cover;        /* растянуть на весь экран */
  background-position: center;   /* центрировать */
  background-repeat: no-repeat;  /* не повторять */
  background-attachment: fixed;  /* закрепить фон при скролле */
  position: relative;
}

/* Полупрозрачный цветной слой для читаемости текста */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.60); /* затемняем на 35% */
  z-index: -1;
}
@media screen and (max-width: 768px) {
  /* Делаем отдельный слой с фоном */
  body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url("https://static.tildacdn.com/tild3361-3133-4266-a465-343066363430/IMG_5057.PNG") center center / cover no-repeat;
    z-index: -2; /* лежит в самом низу */
  }

  /* Затемняющий слой поверх фона */
  body::after {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); /* затемнение 60% */
    z-index: -1; /* поверх картинки, но под контентом */
  }
}
