/* Basic Reset and Font Setup */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light grey background */
    color: #333; /* Dark text */
    text-align: center; /* Center everything on the page */
}

/* Container for content */
main {
    max-width: 800px; /* Max width of the content area */
    margin: 50px auto; /* Centers the main content vertically and horizontally */
    padding: 20px;
    background-color: #ffffff; /* White content box */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Header Styling */
header {
    padding: 40px 0;
    background-color: #2c3e50; /* A nice dark blue/grey color */
    color: white;
}

header h1 {
    margin-bottom: 5px;
}

.tagline {
    font-size: 1.1em;
    opacity: 0.8;
}

/* Button Styling (for the Contact link) */
.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #3498db; /* A bright, inviting blue */
    color: white;
    text-decoration: none; /* Removes the underline */
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #2980b9; /* Slightly darker blue on hover */
}

/* Footer Styling */
footer {
    padding: 20px 0;
    border-top: 1px solid #ddd;
    font-size: 0.9em;
    color: #777;
}