.page-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--primary-color);
  overflow: hidden;
}

.page-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  background: url("../assets/bg_pattern.png") repeat top left / 200px;
  opacity: 0.2;
  mix-blend-mode: color-dodge;
  z-index: 2;
}

.page-bg__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
