body {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  color: #388e3c;
  font-size: 2.5rem;
  margin-top: 2rem;
  letter-spacing: 2px;
}

.recipe-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem auto;
  max-width: 1200px;
}

a{
  text-decoration: none;
  font-size: 1.5rem;
  color:#388e3c;
  font-weight: bold;
}

.recipe {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(79, 70, 229, 0.08);
  border: none;
  padding: 2rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor:pointer;
}

.recipe:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.15);
}

img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(79, 70, 229, 0.07);
}

.recipe-title {
  font-size: 1.3rem;
  color: #3730a3;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.recipe-description {
  color: #64748b;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

@media (max-width: 800px) {
  .recipe-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .recipe {
    width: 90%;
  }
}