/* assets/islamic-pattern.css */
/* Andalusian zellij SVG background overlay */

html,
body {
  min-height: 100%;
}

body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  background-image: url("/assets/andalusian-zellij.svg");
  background-size: 160px 160px;
  background-position: center;
  background-repeat: repeat;
  mix-blend-mode: normal;
}

body > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  body::before {
    opacity: 0.08;
    background-size: 125px 125px;
  }
}
