#container {
  width: 100%;
  height: fit-content;
}

#content {
  width: 100%;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 0.2rem;
  justify-items: center;
  align-items: start;
}

.product-card {
  width: 16rem;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
}

.product-card img {
  width: 100%;
  border-radius: 4px;
}
.product-card h2 {
  font-size: 1.2em;
  margin: 10px 0 5px 0;
}
.product-card p {
  font-size: 1em;
}
