@import url("general.css");

h1 {
  text-align: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

Body {
  background: lightgrey;
  font-family: sans-serif;
}

/*conteneur pour les cates*/

.liste-articles {
  margin: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

/*carte*/

.article {
  float: left;
  /*width : 30% */
  flex-basis: 45%;

  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(0deg);*/
  margin: 0 55px 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: 50%;
  color: #ffff;
  text-decoration: none;
  padding: 15px 32px;
  font-size: 1em;
  border: none;
}

.bouton:hover {
  background-color: pink;
  color: #333;
}

* {
  padding: 0;
  margin: 0;
}

section {
  display: flex;
  justify-content: space-around;
}
.boite1,
.boite2,
.boite3 {
  width: 400px;
  height: auto;
  border: 2px black solid;
  padding: 3px;
}

.plus-texte {
  display: none;
}

.plus-texte.voirplus {
  display: inline;
  height: auto;
}
.plus-texte.voirplus .fin {
  display: none;
}

.bouton-lire-plus {
  /*https://developer.mozilla.org/fr/docs/Web/CSS/cursor*/
  cursor: pointer;
  padding: 3px;
  font-weight: bold;
  text-align: center;
  display: block;
  padding: 15px 60px;
}
