    body {
        /* Set background image */
        background-image: url('pexels-photospublic-33041.jpg');

        /* Make it cover the whole page */
        background-size: cover;

        /* Keep image fixed when scrolling */
        background-attachment: fixed;

        /* Center the image */
        background-position: center;

        /* Prevent tiling */
        background-repeat: no-repeat;

        /* Optional: fallback background color */
        background-color: #f0f0f0;
    }

    #text {
        color: white;
        left: 10%;
        bottom: 10%;
        position: absolute;
        font-size: 2em;
    }