/* ROOT Styles/default.css */
body {
    background-color: #ffffff;
    color: #333333;
    font-family: Arial, sans-serif; /* Sans-serif for body */
    line-height: 1.6;
    max-width: 800px;         /* Style 1: Max-width */
    margin: 0 auto;           /* Style 2: Centered layout */
    padding: 20px;            /* Style 3: Padding */
}

h1 {                          /* Style 4: Removed 'header' qualification */
    font-family: Georgia, serif; 
    color: #2c3e50;           /* Style 5: Header Color */
    text-align: center;
}

h2 {
    border-bottom: 2px solid #2c3e50; /* Style 6: Border style */
    padding-bottom: 10px;
}

nav {
    text-align: center;
    margin-bottom: 20px;
}

footer {
    font-size: 0.8em;         /* Style 7: Font size change */
    text-align: center;
    margin-top: 50px;
    color: #7f8c8d;
}