#all_products{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    width:70%;
    margin:auto;
  }

  #all_products>div{
    border:1px solid brown;
    padding:15px;
    border-radius:4px;
    text-align:center;
    color:darkolivegreen;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  }

  #heading{
    color:black;
    font-weight:bold;
    font-size:20px;
  }

  #heading:hover{
    font-style: italic;
  }

  #all_products>div>img{
    width:90%;
    height:150px;
  }

  button{
    width:200px;
    height:30px;
    text-align:center;
    padding:6px;
    border:none;
    border-radius:5px;
    background-color: maroon;
    color:white;
    font-weight:bold;
    margin-bottom:20px;
    cursor:pointer;
    box-shadow: 0px 5px 5px maroon;
  }

  #add_more_product{
    height:35px;
    width:220px;
  }
  a{
    text-decoration:none;
    color:white;
  }