body{
    background-color: #85C1E9;
    color: #333;
    line-height: 1.6;
    text-align: center; 
    text-shadow: rgb(51, 51, 51);
  }
  
  header {
    background: linear-gradient(135deg, #E9967A, #F08080);
    color: white;
    border-radius:  0px  0px 40px 40px;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .logo span {
    color: #02fa0e;
  }
  
  .tagline {
    font-style: italic;
    margin-bottom: 1rem;
  }
  nav {
    border-radius:  0px 0px  40px 40px;
    background-color:#CD5C5C;
    padding: 0.5rem 0;
    width: 70%;
    margin-left: 15%;
  }
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
  }
  nav ul li {
    margin: 0 1rem;
  }
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
  }
  nav ul li a:hover {
    background-color: #a04040;
    color: #ff2579;
    border-radius: 40px;
  }
  .container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center; 
  }
  .hero {
    background: url("./backgrunds/download\ \(2\).jfif");
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 2rem;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .hero-content {
    padding: 2rem;
  }
  .hero h1 {
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: ffffff;
  }
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #ffffff;
  }
  .btn {
    display: inline-block;
    background-color: #ff57ab;
    color: #55031c;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn:hover {
    background-color: #55031c;
    color:  #ff57ab;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 40px;
  }
  .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #55031c;
    margin: 0.5rem auto;
  }
  .mammal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center; 
  }
  .mammal-card {
    background-color: white;
    margin-top: 0;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
  }
  .mammal-image {
    height: 200px;
    overflow: hidden;
    margin-top: 0px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center; 
  }
  .mammal-image img {
    width: 100%; 
    height: 100%;
    margin-top: 0;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 40px;
  }
  .mammal-card:hover .mammal-image img {
    transform: scale(1.1);
  }
  .mammal-info {
    padding: 1.5rem
  }
  .mammal-info h3 {
    color: #0066cc; 
    margin-bottom: 0.5rem;
  }
  .scientific-name{
    font:x-large;
  }
  footer {
    background: linear-gradient(135deg, #E9967A, #F08080);
    text-align: center;
    padding: 10px;
    margin-bottom: 0px;
    margin: top 10px; 
    border-radius:  0px  0px 40px 40px;
    width: 100%;
    
      margin-top: 50px;  
  }
  .footer{
      font-size: 18px;
      line-height: 1.6;
      width: 100%;
      margin: 20px auto 20px;
  }
  
  .signature {
      font-style: italic;
      font-size: 16px;
      margin-top: 20px;
  }
  .fish-icon {
      font-size: 24px;
      margin: 0 5px;
  }
  .social-links {
      margin-top: 20px;
  }
  .social-links a {
      color: white;
      margin: 0 10px;
      text-decoration: none;
      font-size: 18px;
      transition: all 0.3s;
  }