/* Фон страницы */
.background {
  position: fixed;
  inset: 0;
  background-image: url("../assets/bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* лёгкий blur */
  filter: blur(8px);
  transform: scale(1.05);

  z-index: -2;
}

/* затемняющий слой поверх фона */
.background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}
