/* SU Projects – gemeinsamer Raster-Hintergrund */
html {
  height: 100%;
}

body {
  background-color: #050507;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-color: #050507;
  background-image: url("su-grid-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateZ(0);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(5, 5, 7, 0.42);
}

.bg-layer {
  display: none !important;
}
