body {
    /* Set the path to your image */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5)),
        url('/Bobsen-and-Bob/BB-logo.png');

    /* Prevent the logo from repeating like a pattern */
    background-repeat: no-repeat;

    /* Center the image horizontally and vertically */
    background-position: center;

    /* Keeps the background from scrolling with the page */
    background-attachment: fixed;

    /* Scale the image (Optional) */
    /* 'contain' shows the whole logo; 'cover' fills the screen */
    background-size: contain;

    /* --- Content Centering Code --- */
    display: flex;
    flex-direction: column;   /* Stacks content vertically */
    justify-content: top;  /* Centers content vertically */
    align-items: center;      /* Centers content horizontally */
    
    margin: 0;
    min-height: 100vh;        /* Ensures the body fills the full screen height */
    text-align: center;       /* Ensures text inside elements is also centered */
}
  
}