body {
    background-image: url('lafayette.jpg'); /* Replace with your image file path or URL */
    background-repeat: no-repeat; /* Prevents the image from tiling */
    background-position: center center; /* Centers the image vertically and horizontally */
    background-size: cover; /* Scales the image to cover the entire viewport while maintaining aspect ratio */
    margin: 0; /* Removes default body margin */
    height: 100vh; /* Ensures the body takes up the full height of the viewport */
    overflow: hidden; /* Hides scrollbars if the image is larger than the screen */
}