body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #333;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  color: #202020;
}

.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

#searchInput {
  flex: 1;
  padding: 12px 16px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

#resetButton {
  padding: 12px 20px;
  font-weight: bold;
  background-color: #ddd;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

#resetButton:hover {
  background-color: #ccc;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.card.hide {
  display: none;
}

.card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.card h2 {
  margin-top: 0;
  font-size: 1.3em;
  color: #42277f;
}

.card p {
  flex-grow: 1;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.btn {
  text-decoration: none;
  background: #42277f;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s;
}

.btn:hover {
  background: #42277f;
}

.logo {
    
    height: auto;
    width: 70%;
}

.tete {
  display: flex;
  justify-content: center;
}