body {
            /* Set the background image path */
            background-image: url('turn-too-logo-vector-jpg-2699kb.jpg');
            
            /* Prevent the image from repeating */
            background-repeat: no-repeat;
            
            /* Scale the image to fit the screen without cropping */
            background-size: contain;
            
            /* Center the image on the screen */
            background-position: center;
            
            /* Set background color to fill empty space (optional) */
            background-color: #FFFFFF;
            
            /* Ensure the background covers the full viewport height */
            height: 100vh;
            margin: 0;
        }