body {
 background-image: url("bg.jpg");
 background-color: #cccccc;
 background-size: cover; /* Scale the image to cover the entire element */
 background-position: center center; /* Center the image horizontally and vertically */
 background-repeat: no-repeat; /* Prevent the image from repeating */
 background-attachment: fixed; /* Keep the image fixed when scrolling */
}