/* styles.css */
body {
/*    margin: 0;
    padding: 0;
*/    background-image: url('logo.png'); /* Replace with your image path */
    background-size: 100% 100% !important;                 /* Scales the image to cover the entire window */
    background-position: top left;            /* Centers the image */
    background-repeat: no-repeat;           /* Prevents the image from repeating */
    height: 100vh;                          /* Makes sure the body takes full viewport height */
}
