.search-wrapper {
  display: flex;
  flex-direction: column;
  margin: 20px;
  gap: 0.25rem;
  font-size: 1.5rem;
}

.utility-container {
  display: flex;
  flex-wrap: wrap;
  background-color: lightgray;
  gap: 10px;
}

.card {
  flex: 0 1 auto;
  border-radius: 10px;
  padding: 10px;
  margin: 10px;
  border: 4px solid black;
  background-color: #FFBE5C;
  box-shadow: 10px 10px black;
  width: 250px;
  height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .title-section {
  display: flex;
  justify-contents: center;
  gap: 10px;
}

.card h3 {
  font-weight: bold;
  font-size: 24px;
}

.card h5 {
  font-weight: normal;
  background-color: hsl(0, 0%, 95%);
  border-radius: 10px;
  text-align: center;
  width: 40%;
  margin: 0;
  padding: 2px;
  font-size: 16px;
  border: 2px dotted black;
}

.card p {
  font-weight: normal;
  font-size: 20px;
}

.card h2 {
  background: linear-gradient(to right, #B0FFBB, #00FF22);
  border: 2px solid black;
  color: black;
  border-radius: 10px;
  text-align: center;
  width: 8rem;
  box-shadow: 2px 2px black;
}

.card h2:hover {
  transform: scale(1.1);
}

.card a {
  text-decoration: none;
}

.hide {
  display: none;
}

