/* Parallax gradient background for body */

body {
  min-height: 100vh;
  background: #181818;
}

/* Parallax effect for background */
@media (pointer: fine) {
  body {
    background-attachment: fixed;
  }
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    background:
      linear-gradient(120deg, rgba(35,37,38,0.85) 0%, rgba(136,136,136,0.15) 100%),
      linear-gradient(135deg, #232526 0%, #888888 100%);
    background-blend-mode: lighten, normal;
    transition: background 0.5s;
}
