/* Global styles */
body {
    margin: 0;
    font-family: "poppins", sans-serif;
font-weight: 200;
font-style: normal;
  }
  
  /* Header styles */
  header {
    background-color: #006633;
    color: #fff;
    padding: 20px;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
  
  nav li {
    margin: 0 10px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
  }
  
  .hero {
    text-align: center;
    margin-top: 50px;
  }
  
  /* Main styles */
  main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  section {
    margin-bottom: 50px;
  }
  
  .review h3,
  .recipe h3 {
    margin-top: 0;
  }
  
  .review a,
  .recipe a {
    color: #006633;
	  text-decoration: none;
}
img {
width: 300px;
height: 300px;
}
.footer{
    text-align: center;
}