*.
*::before,
*::after{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.contenedorp{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 100px);
  grid-gap: 20px;
}
.contenedorp div{
  background-color: rgb(212, 208, 190);
  text-align: justify;
  padding: 10px;
  border-radius: 5%;
}

@media screen and (max-width: 768px) {
  .contenedorp {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .contenedorp {
    grid-template-columns: 1fr;
  }
}