* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}
h1 {
  font-size: 2rem;
  font-weight: 300;
  margin-left: 2.5%;
}

.content {
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
}
.content .grid {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
}
.content .grid .item {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: 1px solid black;
  min-height: 300px;
  display: grid;
  grid-template-rows: 70% 30%;
}
.item .titre_produit {
  background-color: white;
}
.item .titre_produit h2 {
  font-size: 1rem;
  font-weight: 200;
}

.item .image_url {
  width: 100%;
  height: 100%;
}

.item .image_url img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .content .grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .content {
    height: auto;
  }
}
@media (max-width: 425px) {
  .content .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .content {
    height: auto;
  }
  h1 {
    font-size: 2dvh;
  }
  .content {
    height: auto;
  }
}
