
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
  }

header{
    display: flex;
    justify-content: space-between;
    background-color:rgb(0, 32, 0);
    align-items: center;
    height: 10vh;
    padding: 20px 20px;
    margin: 0;
}
.logo img{
    height:20px;
}
.nav ul {
    display: flex;
    gap: 30px;
}
.nav ul li{
    margin-right: 30px;
}
.nav ul li a{
    font-family: arial;
    font-weight: bold;
    text-decoration: none;
    color:white;
    font-size: 20px;
}
.nav ul li button{
    background-color: rgb(234, 240, 234);
    border-radius: 20px;
    border: none;
    width: 150px;
    height: 5vh;
    

}
.nav ul li button a{
    font-size: 15px;
    color:darkgreen
}
  

  .mother {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
  
 
  .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
 
  .container img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .container img:hover {
    transform: scale(1.02);
  }
  
  
  @media (max-width: 768px) {
    .mother {
      grid-template-columns: 1fr; 
      gap: 20px;
    }
  
    .container {
      gap: 10px;
    }
  
    .container img {
      border-radius: 8px;
    }
  }
  