@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root,
body {
  font-family: Poppins, Arial, sans-serif;
  background-color: var(--theme-colors-husgraylight);
  margin: 0;
  padding: 0;
}

.shell-header {
  display: flex;
  justify-content: space-between;
  margin: 0;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: white;
}

.shell-header h1 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--theme-colors-husblue);
  margin: 0;
  padding: 0;
}

.shell-header img {
  width: 100px;
}

.shell-catalog {
  margin: 0;
  padding: 1rem;
  list-style: none;
  gap: 1rem;
  display: grid;
  grid-template-columns: 1fr;
}

.shell-catalog-item {
  background-color: white;
  display: flex;
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
}

@media (min-width: 748px) {
  .shell-catalog {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
