body, html {
    height: 100%; /* Ensures both elements cover the full viewport height */
    margin: 0;   /* Removes default body margin, preventing white borders */
    padding: 0;
}

body {
    background-image: url("orbitz1.png"); /* Specify the path to your image */
    background-position: center;             /* Centers the image within the viewport */
    background-repeat: no-repeat;            /* Prevents the image from repeating */
    background-size: cover;                  /* Scales the image to cover the entire container while maintaining its aspect ratio */
    background-attachment: fixed;            /* Keeps the background image fixed during scroll, if desired */
}
