@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  list-style-type: none;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
}

.active {
  background-color: #6c757d;
  color: gainsboro;
}
h1 {
  text-align: center;
}

.inputContaner {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.inputContaner input,
select {
  padding: 0.7rem 1.7rem;
  font-size: large;
}

.showProducts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
}
.product {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem;
  width: 475px;
  transition: all 0.5s ease;
}
.product button {
  width: 40%;
  padding: 1rem;
  font-size: large;
}
.product:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.product button:hover {
  cursor: pointer;
}
.product img {
  width: 420px;
  height: 320px;
  margin-bottom: 1.7rem;
}
.pagination {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}
.pagination button {
  border-right: none;
  padding: 0.5rem 1.3rem;
  font-size: large;
}
.pagination button:last-child {
  border-right: 1px solid;
}
.pagination button:hover {
  cursor: pointer;
}
