body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  padding: 2rem;
}

h1 {
  text-align: center;
}

input {
  display: block;
  margin: 1rem auto;
  padding: 0.5rem;
  width: 300px;
}

.recipes-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.recipe-card {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.recipe-card:hover {
  transform: translateY(-3px);
}

.recipe-card a {
  text-decoration: none;
  color: #333;
}
