
body{
  background-color:lightgray;
}
p,h2,h1{
  text-align: center;
  font-family:Arial, Helvetica, sans-serif;
}
nav{
        background-color: #2C5F2D;
        padding: 15px;
        text-align: center;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
      }
      nav a{
        color: #F4E7D1;
        text-decoration: none;
        font-weight: bold;
        padding: 10px 15px;
        margin: 0 10px;
        display: inline-block;
        transition: color 0.3s ease-in-out;
      }
      nav a:hover {
        color: #F4A261;
      }
.hero {
  background-image: url(images/hero\ banner.jpg);
  background-size:cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align:center ;
  color: white;
  padding: 50px;
  margin-top: 65px;
}
.hero-content{
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 8px;
  max-width: 80%;
}
.grid-container{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.habitat-group{
  background-color: #FFF8E1;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 45%;
  transition: transform 0.3s ease-in-out;
}

.habitat-group img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.habitat-group ul{
  list-style-type: none;
  padding: 0;
  font-size: 1.1rem;
  font-style: italic;
}

.read-more{
  display: inline-block;
  margin-top: 15px;
  padding: 10px 15px;
  background-color: #2C5F2D;
  color:white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.read-more:hover {
  background-color: #102611;
}
footer{
        background-color: #1a470dfa;
        color: #FFF8E1;
        text-align: center;
        padding: 25px 10px;
        position: relative;
        bottom: 0;
        width: 100%;
        font-size: 1.1rem;
        border-top: 3px solid #2C5F2D;
        margin-top: 20px;
      }
     .footer-info{
      font-size: 1.1rem;
      padding-bottom: 10px;
     }
      .social-links a{
      color:#FFF8E1;
      text-decoration: none;
      font-weight: bold;
      margin: 0 10px;
     }
     .social-links a:hover{
      color: #F4A261;
     }