/* recipe gallery style */
.recipes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px;
}
  /* style for each recipe card */
  .recipe-card {
    width: 425px;
    display: flex;|
    flex-direction: column;
    text-align: center;
    border: 2px solid #b8d0fa;
    border-radius: 20px;
    margin: 10px;
    background-color: aliceblue;
}
    .recipe-card img {
      width: 100%;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
}
      .recipe-card h3 {
        margin-bottom: Opx;
}
        .recipe-card p {
          font-size: 17px;
          padding: 10px;
          margin-bottom: 5px;
}
          .recipe-card h4 {
            margin-bottom: Opx;
            margin-top: 5px;
          }
            .recipe-card li {
              font-size: 17px;
              padding-left: 10px;
          }