body {
            font-family: 'Georgia', serif;
            background-image: url('https://images.wallpaperscraft.com/image/single/spruce_forest_trees_170996_1280x720.jpg'); /* Ensure this matches your uploaded image */
            background-size: cover;
            background-attachment: fixed;
            color: #e0e0e0;
            margin: 0;
            padding: 0;
        }

        header {
            background-color: rgba(0, 50, 0, 0.9); /* Even darker green header */
            color: #f2f2f2;
            text-align: center;
            padding: 40px 0;
        }

        h1 {
            margin: 0;
            font-family: 'Times New Roman', serif;
            letter-spacing: 2px;
        }

        section {
            padding: 20px;
            margin: 20px auto;
            max-width: 600px;
            background-color: rgba(0, 30, 0, 0.8); /* Darker green sections */
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
        }

        h2 {
            color: #ffd700;
            font-family: 'Georgia', serif;
            text-shadow: 1px 1px 5px #000;
        }

        #fun-facts ul {
            list-style-type: none;
            padding: 0;
        }

        #fun-facts li {
            background-color: rgba(51, 51, 51, 0.8);
            padding: 10px;
            margin: 5px 0;
            border-radius: 5px;
            color: #d3d3d3;
            font-style: italic;
        }

        #fun-button {
            text-align: center;
        }

        button {
            background-color: #333;
            color: #ffd700;
            border: 2px solid #ffd700;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }

        button:hover {
            background-color: #ffd700;
            color: #333;
        }

        footer {
            text-align: center;
            padding: 20px;
            background-color: rgba(0, 50, 0, 0.9); /* Even darker green footer */
            color: white;
            position: absolute;
            width: 100%;
            bottom: 0;
        }