.grid {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  align-items: center;
  place-items: center;
  margin: auto;
  
}
.product {
  display: block;
  flex-direction: column;
  align-items: center;
  text-align: justify;
  background-color: rgb(175, 175, 253);
  margin-bottom: 10px;
}
.product img {
  width: 480px;
  height: 300px;
  object-fit: cover;
}
.product .details {
  font-weight: bold;
  text-align: center;
  padding: 20px;
}

.image{
  padding-top: 20px;
}

p{
  text-align: justify;
}