@import url("general.css");

h1 {
  text-align: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

Body {
  font-family: sans-serif;
}

/*conteneur pour les cartes*/

.liste-articles {
  margin: 0;
  width: 97%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

/*carte*/

.article {
  float: left;
  /*width : 30% */
  flex-basis: 100%;

  margin: 20px;
  padding: 30px;
  background-color: #ffff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  border: 3.5px solid;
  border-color: indianred;
}
#image1,
#image2,
#image3,
#image4 {
  width: 200px;
  height: 200px;
  border: 20px;
  /*shape-outside: circle(50%);*/
  margin: 0 30px 20px 0;
}
#image1,
#image3 {
  float: left;
}
#image2,
#image4 {
  float: right;
  margin: 0 10px 20px 0;
}
.bouton {
  display: block;
  text-align: center;
  margin: 4% auto 0 auto;
  background-color: #333;
  border-radius: 5px;
  width: 30%;
  color: #ffff;
  text-decoration: none;
  padding: 15px 32px;
  font-size: 1em;
  border: none;
}

.bouton:hover {
  background-color: pink;
  color: #333;
}
