#produit {
    display: flex;
    flex-direction: row;
    width: 1200px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: auto;
}
#produit .item {
	width: 33.33%;
	box-sizing: border-box;
	padding: 10px;
}
#produit .commande {
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 20px;
    background-color: white;
    margin: 0px 0px 0px 0px;
    text-align: center;
	width: 100%;
	box-sizing: border-box;
}
#produit .commande .bouton, #fiche-produit .bouton {
    display: flex;
    width: 100%;
    margin: auto;
    flex-direction: row;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}
#produit .commande .bouton .modifier, #fiche-produit .bouton .modifier {
    padding: 8px;
    width: 100px;
    text-align: center;
    background-color: #55aaff;
    text-decoration: none;
    color: white;
    border-radius: 20px;
    border: solid 2px #55aaff;
}
#produit .commande .bouton .modifier:hover, #fiche-produit .bouton .modifier:hover {
    background-color: white;
    color: #55aaff;
}
#produit .commande .bouton .supprimer, #fiche-produit .bouton .supprimer {
    padding: 8px;
    width: 100px;
    text-align: center;
    background-color: #ee5253;
    text-decoration: none;
    color: white;
    border-radius: 20px;
    border: solid 2px #ee5253;
}
#produit .commande .bouton .supprimer:hover, #fiche-produit .bouton .supprimer:hover {
    background-color: white;
    color: #ee5253;
}
#produit img {
    height: 120px;
    display: block;
    margin: auto;
}
#produit .nom {
    font-weight: bold;
    font-size: 20px;
}
#produit p {
    margin: 15px 0px;
}
#produit .item {
	width: 33.33%;
}

@media screen and (max-width: 1200px) {
	#produit {
		width: 90%;
	}
	#produit .item {
		width: 50%;
	}
}
@media screen and (max-width: 800px) {
	#produit .item {
		width: 100%;
	}
}