/* This applies to the entire page */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f6; /* A light grey background */
    color: #333; /* Darker text for readability */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Make the page fill the screen */
    text-align: center;
}

/* This styles the main content container */
.container {
    background-color: #ffffff; /* White background for the content */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* This styles the main heading */
h1 {
    color: #2c3e50; /* A nice dark blue */
    margin-bottom: 20px;
}

/* This styles the paragraph text */
p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* This styles the links to look like modern buttons */
a {
    display: inline-block;
    background-color: #007bff; /* A bright blue */
    color: #ffffff; /* White text */
    padding: 12px 20px;
    text-decoration: none; /* Remove the underline */
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

/* This makes the button change color when you hover over it */
a:hover {
    background-color: #0056b3; /* A darker blue */
}
