Responsive grid columns

.parent {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }