body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #4c6b23;
  margin: 0;
  padding: 20px;
}
 
.hero {
  background-color: #f9f9f9;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 1000px;
}
 
.hero h1 {
  font-size: 55px;
  font-weight: 400;
  margin: 0 auto;
  color: #182b0aff;
  font-family: 'Merriweather', serif;
}
 
nav {
  position: sticky;
  top: 0;
  background-color: #182b0aff;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  justify-content: left;
}
 
nav a,
.dropbtn {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  font-weight: bold;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
 
.dropdown {
  position: relative;
  display: inline-block;
  left: 0;
}
 
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #253012;
  min-width: 160px;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
 
.dropdown-content a {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
}
 
.dropdown-content a:hover {
  background-color: #3b4a21;
}
 
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
 
.button-link {
  display: inline-block;
  padding: 16px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-family: 'Merriweather', serif;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
 
.button-link:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}
 
.button-link:active {
  background-color: #004080;
  transform: translateY(0);
}
 
footer {
  background: #182b0aff;
  font-family: 'Courier New', Courier, monospace;
  color: white;
  text-align: left;
  padding: 15px;
  margin-top: 40px;
}
 
footer p {
  margin-bottom: 10px;
  font-size: 1.1em;
}
 
.social-icon {
  width: 30px;
  height: 30px;
  margin: 10px;
  vertical-align: middle; /* fixed: 'right' is not a valid value */
  text-decoration: none;
  transition: transform 0.3s ease;
}
 
.social-icon:hover {
  transform: scale(1.2);
}
 
.article-image {
  width: 100%;
  max-width: 600px;
  height: 400px;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
}
 
.content {
  justify-content: center; /* fixed typo: 'justyfy-content' */
  align-items: center;
  width: 1000px;
  margin: 0 auto;
}
 
/* Paragraphs */
.content p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left; /* fixed: 'align-text' is not valid */
  width: 1000px;
}
 
/* Section headings — fixed: <h> is not valid HTML; use <h2> */
.content h2 {
  font-size: 2em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 30px;
  color: #182b0aff;
  font-family: 'Merriweather', serif;
  width: 1000px;
}
 
