html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: black; /* fallback color while image loads */
}

/* Blur-up placeholder before main image loads */
body {
  background-image: url('images/years-low.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: blur(5px);
  transition: filter 0.5s ease-in-out;
}

/* Once main image is loaded, remove blur */
body.loaded {
  background-image: url('images/years.webp'), url('images/years.png');
  filter: blur(0);
}
