/* Paragraph styling */
p {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 
               'Lucida Grande', 'Lucida Sans Unicode', 
               Geneva, Verdana, sans-serif;
}

/* Default button styling */
button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #0056B3;
}

/* Header styling */
h1 {
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: normal;
  text-decoration: overline; /* This draws the line above header */
}

/* Section backgrounds */
section {
  background-color: white;
}

/* Article and aside styles */
article,
aside {
  background-color: cadetblue;
  border: 5px solid #000000;
}

/* Footer text color */
footer {
  color: aqua;
}

/* Hyperlink font */
a {
  font-family: Arial, sans-serif;
}

/* Remove broken CSS that caused layout issues:
   left: 2px;
   top: 2px;
*/

/* Subheader styling */
h2 {
  font-family: "Comic Neue", serif;
  font-weight: 400;
  font-style: normal;
}

/* Global font */
body {
  font-family: Arial, sans-serif;
}

/* Search box container */
.search-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

/* Text input */
input[type="text"] {
  padding: 0.5rem;
  font-size: 1rem;
}

/* Search results */
#searchResults {
  padding: 1rem;
}
