@import url("https://fonts.googleapis.com/css2?family=Karla:wght@300;400&family=Sarabun:wght@200&family=Jura:wght@300&display=swap");

/*********HEADER*********/
.couverture {
  background: url(../image/images.jpg) fixed no-repeat 50% 50%;
  background-size: cover;
  height: 25rem;
}
/********************************SECTION-ARTICLE****************************/
.New_article {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  height: 40px;
  width: 100%;
  padding: 5px;
  margin: 5rem 0 0 0;
  background: #2b2d42;
  color: #edf2f4;
  font-family: "Sarabun", sans-serif;
}
.fa-plus {
  font-size: 18px;
  position: relative;
  left: 20px;
  border: 2px solid #dbdbdb;
  border-radius: 10px;
  padding: 5px;
}
.New_article:hover .fa-plus {
  color: #2b2d42;
  background: #dbdbdb;
}
.section_article {
  margin: 5% 0 5% 0;
  width: 100%;
  font-family: "Sarabun", sans-serif;
}
.container_articles {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.container_article {
  flex: 1;
  max-width: 100%;
  min-width: 15rem;
  height: 20rem;
  background: #2b2d42;
  margin: 0 2% 5% 2%;
}
.container_article:hover {
  background: #e5383b;
  transition: 1s;
}
.article_none {
  background: #edf2f4;
  border-bottom: 1px solid #2b2d42;
  transition: 1s;
}
.article_none:hover {
  border: none;
  color: #edf2f4;
}
.image_article {
  background-size: cover;
  width: 100%;
  height: 12.5rem;
}
.title_article {
  font-size: 20px;
  margin: 4px 0 2px 1rem;
  color: #000000;
  transition: 1s;
}
.container_article:hover .title_article {
  color: #edf2f4;
}
.date_article {
  margin: 0 0 0 1rem;
  color: #555555;
  transition: 1s;
  padding-bottom: 1.6rem;
  font-size: 10px;
}
.container_article:hover .date_article {
  color: #ffb0b0;
}
.button_articles {
  display: flex;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
}
.supprimer_articles {
  border: none;
  width: 100%;
  max-width: 9rem;
  min-width: fit-content;
  background: #ca3032;
  color: #edf2f4;
  position: relative;
  padding: 0.75rem 0 0.75rem 0;
  text-align: center;
  transition: 1s;
  margin: 0 3px 0 3px;
  font-family: "Sarabun", sans-serif;
}
.supprimer_articles:hover {
  background: #2b2d42;
  color: #edf2f4;
}
.modifier_articles {
  border: none;
  width: 100%;
  max-width: 9rem;
  min-width: fit-content;
  background: #dbdbdb;
  color: #2b2d42;
  position: relative;
  padding: 0.75rem 0 0.75rem 0;
  text-align: center;
  transition: 1s;
  margin: 0 3px 0 3px;
}
.modifier_articles:hover {
  background: #2b2d42;
  color: #edf2f4;
}
