 /* Style for the background and text */
        


        /* Style for the header */
        header {
            background-color: #2a9df4; /* Blue background */
            color: white; /* White text */
            padding: 20px;
            text-align: center;
        }

        /* Style for main content */
        main {
            margin: 20px;
            padding: 20px;
            background-color: #edf7ed; /* White background for main content */
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            
        }

        h1 {
            color: white; /* Blue headings */
        }

        h2 {
            color: #2a9df4; /* Blue headings */
        }

        a {
            color: #d2691e; /* Chocolate color for links */
        }

        /* Style for the footer */
        footer {
            background-color: #333333; /* Dark gray background */
            color: #f0f8ff; /* Light text */
            text-align: center;
            padding: 10px;
            margin-top: 20px;
        }