    html, body {
        margin: 0;
        padding: 0;
        height: 100%; /* Ensure html and body take full viewport height */
        width: 100%;
    }

    .background-image {
        background-image: url('imagery/image.png'); /* Replace with your image path */
        background-size: cover; /* Scales the image to cover the entire container */
        background-position: center center; /* Centers the image */
        background-repeat: no-repeat; /* Prevents image repetition */
        background-attachment: fixed; /* Keeps the background fixed when scrolling */
        position: fixed; /* Fixes the background to the viewport */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1; /* Places the background behind other content */
    }

    .content {
        position: relative; /* Ensure content appears above the background */
        z-index: 1;
        /* Add styling for your content here */
        text-align: center;
        padding-top: 100px; /* Example padding */
        color: white;
    }