body {
  background: lightsteelblue;
}

conteneur {
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

boite-1	{
	/*Définir la taille et la couleur de notre boîte*/
    width: 150px;
    height: 150px;
    background: yellowgreen;
    /*Fixer une marge entre les boîtes*/
    margin: 25px;
    /*Aligner verticalement et horizontalement le contenu*/
    display: flex;
    align-items: center;
    justify-content: center;
}

boite-2	{
	width: 150px;
    height: 150px;
    background : lightsalmon;
    margin: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

boite-3	{
	width: 150px;
    height: 150px;
    background : tomato;
    margin: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}