/* Shared page canvas for both the current layout and legacy standalone routes. */
html {
 min-height: 100%;
 background-color: #050505;
 background-image:
  linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.46)),
  url('../Pictures/background.png');
 background-position: center top;
 background-repeat: no-repeat;
 background-size: cover;
 background-attachment: fixed;
}

body {
 min-height: 100vh;
 background-color: #050505;
 background-image:
  linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.46)),
  url('../Pictures/background.png');
 background-position: center top;
 background-repeat: no-repeat;
 background-size: cover;
 background-attachment: fixed;
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
 html,
 body {
  background-attachment: scroll;
 }
}
