body {
  font-family: 'Poppins', sans-serif;
  background: #aab6d0;
  color: white;
  text-align: center;
  margin: 0;
}

.container {
  padding: 20px;
}

.title img {
  width: 35px;
  height: 35px;
  animation: float 2s infinite ease-in-out;
}

.search-box {
  margin: 20px auto;
  padding: 12px;
  border-radius: 12px; /* smooth curved edges */
  background: linear-gradient(135deg, #aab6d0, #7f8691);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

input {
 padding: 10px 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  background: white;
  color: #333;
}

button {
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  background: #7f8691;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.search-box button:hover
{
  background: #5f6670;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.card {
  background: #7f8691;
  padding: 20px;
  border-radius: 10px;
  width: 220px;
}