* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.box{
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto ;
    grid-column-gap: 25px;
    grid-row-gap: 30px;
    background-color:antiquewhite;
    /*border: 5px solid black;*/
     margin-left: 14px; 
     padding: 10px;
  }
  .box1 p{
    text-align: center;
    color: black;
    font-size: 25px;
  }
  .box1 img{
    width: 100%;
    height: 40vh;
    border-radius: 20px;
  }
  .box1 img:hover{
    box-shadow: 0 4px 8px 0 black, 0 6px 20px 0 black;
  }
  .box1 p:hover{
    border-radius: 10px;
    color: white;
    background-color: darkblue;
  }
  /* food */
  .food h1{
    text-align: center;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black;
  }