body {
    font-family: sans-serif; /* Or a different nice font */
    line-height: 1.6;
    margin: 0;
    padding: 20px; /* Add some padding around the content */
    background-color: #f8f8f8; /* Light grey background */
    color: #333; /* Dark grey text */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Make sure the body takes at least the full viewport height */
    align-items: center; /* Center content horizontally */
}

header {
    background-color: #6F2020; /* maroon ish */
/*    background-color: #4285F4;  Firebase blue */
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%; /* Make header full width */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-top: 0;
    color: #fff; /* White color for header text */
}

main {
    flex-grow: 1; /* Allow main content area to grow */
    max-width: 800px; /* Max width for content */
    width: 100%; /* Ensure main takes full width up to max-width */
    background-color: #fff; /* White background for main content */
    padding: 30px;
    margin: 20px auto; /* Center main block and add vertical margin */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center text within the main content area */
}

.intro p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

footer {
    margin-top: 20px;
    text-align: center;
    color: #777; /* Lighter grey for footer text */
    font-size: 0.9em;
    padding: 10px 0;
    width: 100%; /* Make footer full width */
}

/* Basic responsiveness for smaller screens */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    main {
        padding: 20px;
    }
    h1 {
        font-size: 1.8em;
    }
}

