/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #fff; /* White background */
    color: #000; /* Black text */
}

header {
    background-color: #555555; /* Black header background */
    color: #fff; /* White text in header */
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 20px;
}

/* Highlight color for links and buttons */
a {
    color: #d78028; /* Highlight color for links */
}

button {
    background-color: #d78028; /* Highlight color for buttons */
    color: #fff; /* White text on buttons */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #a06000; /* Darker highlight color on hover */
}

footer {
    background-color: #000; /* Black footer background */
    color: #fff; /* White text in footer */
    text-align: center;
    padding: 10px;
}
