/*****************cette classe permet d'aligner tout les élément de facon horizontale et de les placer au centre****************/
.background_header{
    display: flex;
    background-color: black;
    justify-content: center;
}
/***************barre de recherche******************/
.barre_de_recherche {
  width: 500px;
  display: flex;
  align-items: center;
  padding:5px 5px;
  border: solid 1px black;
  background-color: white;
  border-radius: 30px;
}
/**************input dans la barre de recherche*******************/

.barre_de_recherche input {
  background: transparent;
  border: 0px;
  padding: 15px 20px;
  font-size: 20px;
  width: 100%;
}
/*********************************/

.barre_de_recherche button{
    border-radius: 30px;
    padding: 15px 30px;
    margin: 0px;
}
