/* itis3135/Styles/default.css */

/* Style 1 & 2: Center container with max-width */
body {
    background-color: #eef2f3; /* Style 3: Background color */
    color: #222;               /* Style 4: Text color */
    font-family: 'Segoe UI', Tahoma, sans-serif; /* Style 5: Sans-serif font */
    line-height: 1.8;
    max-width: 950px;
    margin: 0 auto;
    padding: 20px;
}

/* FIX: Changed from 'header h1' to just 'h1' */
h1 {
    font-family: 'Georgia', serif; /* Style 6: Different font for heading */
    color: #b30000;
    text-align: center;
}

/* FIX: Changed from 'main h2' to just 'h2' */
h2 {
    color: #2c3e50;
    border-left: 5px solid #b30000; /* Style 7: Border accent */
    padding-left: 15px;
}

/* FIX: Changed from 'footer p' to just 'footer' */
footer {
    text-align: center;
    font-size: 0.9em;
    margin-top: 40px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

/* Style for links without qualifying them as 'nav a' */
a {
    color: #0056b3;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #b30000;
}