.store{
    display: flex;
    flex-flow: row nowrap;
  }
  
  .filtres{
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    text-align: center;
    justify-content: space-around;
    width: 20%;
    border: solid 2px white;
  }

  input[type=text]{
    width: 80%;
    padding: 0.5em;
    margin: 1em;
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 50%, 93% 0);
  }
  
  input[type=text]:focus{
    background-color: black;
    color: white;
    border: solid 2px white;
  }
  
select{
  margin: 10px 0 10px 0;
}

  .vitrine{
      display: flex;
      justify-content: space-around;
      flex-flow: row wrap;
      row-gap: 10px;
      width: 80%;
  }
  
  
  .item{
    display: flex;
    width: 30%;
      flex-flow: column nowrap;
      justify-content: space-around;
      border: solid 2px white;
  }

  img{
    width: 100%;
  }

  h3{
    text-align: center;
  }