/* Image de la recette */
.img_recette {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Div préparation à l'horizontale */
.div_preparation {
  display: flex;
  justify-content: space-around;
  color: #979797;
}
.div_prep {
  place-items: center;
}
.div_prep > p {
  margin-bottom: -15%;
}
.prep {
  color: #181818;
}

/* Ingrédients */
.ingredients_quantite {
  display: flex;
  justify-content: space-around;
  justify-self: center;
  margin-top: 10%;
  padding: 15px;
  width: 80%;
  background-color: #f1f1f1;
  border: 1px;
  border-style: solid;
  border-radius: 10px;
  border-color: #E5E7EB;
}
.ingredients_quantite > ul {
  padding: 0%;
  margin: 0;
  place-content: center;
  justify-content: center;
}
.ingredients_quantite > ul > li > ol {
  padding: 0%
}
.ingredients_nom {
  font-weight: bold;
}