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%;     /* Places it directly below the button */
      left: 0;       /* Aligns it with the left edge of the button */
      background-color: #253012;
      min-width: 160px;
      z-index: 1;
      border-radius: 4px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
      align-items: center;
    }

    .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;
}

.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: right;
  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{
  justyfy-content: center;
  align-items: center;
  width: 1000px;
  margin: 0px auto;
}
  
/* Paragraphs */
.content p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 15px;
  align-text: left;
  width: 1000px;
}
  .content h {
  font-size: 2em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 15px;
  color: #182b0aff;
  font-family: 'Merriweather', serif;
  width: 1000px;
}
