/* Reset some default styles for consistency */
body, h1, h2, p, a {
  margin: 0;
  padding: 0;
}

/* Apply styles to the header section */
header {
  background-color: #3498db;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

/* Style the main content section */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Style the weather section */
#weather {
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

/* Style the news section */
#news {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

/* Style individual news articles */
.article {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f7f7f7;
}

/* Style article titles */
.article h2 {
  color: #333;
}

/* Style article descriptions */
.article p {
  color: #666;
}

/* Style links in news articles */
.article a {
  color: #3498db;
  text-decoration: none;
}

/* Style links on hover */
.article a:hover {
  text-decoration: underline;
}
