.grid {
  /* Makes the grid! */
  display: grid;
  /* Gap between the cards. */
  gap: 3rem;
  /* This decides how mayn collumns we get and how the cards are distributed. */
  grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
}
