body {
	background-image: url('haista.jpeg');
	background-size: contain; /* Ensures the whole image fits within the viewport */
	background-repeat: no-repeat; /* Prevents repeating the image */
	background-position: center center; /* Centers the image */
	background-attachment: fixed; /* Keeps the image fixed during scrolling */
	height: 100vh; /* Ensures the body takes up the full viewport height */
	margin: 0;
  }  