/* styles.css */
/* Overall style: Clean, accessible, with soft colors inspired by awareness initiatives. Neutral background, readable text, doodle integrations. */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #e0f2f1; /* Soft teal for awareness feel */
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #00796b; /* Darker teal for links */
    font-weight: bold;
}

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

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 40px;
}

h1, h2 {
    color: #004d40; /* Deep teal for headings */
}

.doodle {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #e0f2f1;
    color: #333;
}

/* Accessibility: High contrast, readable fonts */
a {
    color: #00796b;
}

a:hover {
    color: #004d40;
}
