body {
  background-image: url('bliss.jpg'); /* Path to your Windows XP image */
  background-size: cover; /* Scales image to cover the entire area */
  background-repeat: no-repeat; /* Prevents tiling */
  background-position: center; /* Centers the image */
  background-attachment: fixed; /* Keeps image fixed on scroll */
  height: 100vh; /* Ensures body takes full viewport height */
  font-size: clamp(1rem, 1rem + 1vw, 1.5rem);
  line-height: 1.5; /* Better readability */
  margin-top: 10px;
  margin-inline: max(10px, (100% - 800px) / 2);
  width: vw;
  max-width: 800px;
}
