/* --- Global Styles --- */
body {
    background-color: #aaaaaa;   /* page background */
    color: #111;                  /* text color */
    font-family: "Liberation Serif", serif;
    line-height: 1.6;
    margin: 0;
    padding: 2rem;
}

/* --- Header --- */
header {
    text-align: center;
    margin-bottom: 3rem;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

/* --- Main Content --- */
main {
    text-align: justify;
    max-width: 720px;
    margin: 0 auto 3rem auto;
}

main a {
        text-decoration: none;
    font-size: 1rem;
    font-family: inherit;
    color: #8b0000; /* same dark red as nav */
    font-weight: normal; /* ensure NOT bold */
}

main a:hover {
    color: #006400; /* green on hover */
    font-weight: normal; /* stays non-bold */
}
main p {
    margin: 1.5rem 0;
}
/* --- Images --- */

img {
    max-width: 100%;
    height: auto;
}

/* --- Navigation --- */

nav {
    text-align: center;
}

nav a {
    text-decoration: none;
    font-size: 1rem;
    font-family: inherit;
    color: #8b0000; /* RED */
    font-weight: bold;
    margin: 0 0.5rem; /* spacing (Step 4) */
}

nav a:hover {
    color: #006400; /* GRN */
    font-weight: bold;
}

nav a {
    margin: 0 0.75rem; /* adjust spacing here */
}

/*nav a.active {
    color: #006400; *//* GRN *//*
    font-weight: bold;
}*/

/* --- Footer --- */
footer {
    text-align: center;
    font-size: 0.85rem;
    color: #555;
    margin-top: 4rem;
}

/* --- Links --- */
a {
    color: #111;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}
