ul.recipes {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  justify-content: center;
  padding: 0;
  gap: 1.0rem;
}

ul.recipes li {
  list-style: none;
  border: 1px solid var(--cmed);
  text-align: center;
  width: 100%;
  max-width: 12rem;
  justify-self: center;
  padding: 0;
  margin: 0;
}

ul.recipes li a {
  text-decoration: none;
  color: var(--cfg);
}

ul.recipes li img {
  height: 10rem;
  width: 20rem;
  object-fit: cover;
}

ul.recipes p {
  padding: 0rem 1rem;
  height: 2lh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination > * {
    margin: 0rem 0.2rem;
}
