/* General page style */
body {
    background-color: #0b1c2c;          /* dark blue, Lions style */
    color: #ffffff;                    /* white text */
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;                      /* 10 pixel margin required */
}

/* Center main header, nav, and footer */
header h1 {
    text-align: center;
}

nav {
    text-align: center;                /* centers the navigation links */
    margin-bottom: 20px;
}

footer {
    text-align: center;                /* centers the footer content */
    margin-top: 30px;
    font-size: 0.9em;
}

/* Basic content formatting */
main h2 {
    margin-bottom: 10px;
}

main p {
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Navigation link spacing */
nav a {
    text-decoration: none;
    color: #b0d4f5;
    padding: 0 8px;
}

nav a:hover {
    text-decoration: underline;
}

/* Optional image formatting */
img {
    max-width: 100%;
    height: auto;
}

figure {
    margin: 20px auto;
    text-align: center;
}

figcaption {
    font-style: italic;
    margin-top: 5px;
}