body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  height: 100vh;
  background-color: #444;
}

.recipe-card {
  width: 80%; 
  max-width: 800px; 
  margin: 50px auto; 
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  overflow: hidden;
  text-align: center;
}

.recipe-image img {
  width: 100%;
  height: auto;
  max-height: 300px; 
  object-fit: cover;
}

.recipe-content {
  padding: 20px 40px; 
}

.recipe-title {
  font-size: 28px; 
  color: #333;
  margin-bottom: 15px;
}

.recipe-content h2 {
  font-size: 22px; 
  color: #555;
  margin: 15px 0;
  text-align: left; 
}

.recipe-content ul {
  list-style: disc; 
  padding-left: 20px; 
  margin: 10px 0;
  text-align: left;
}

.recipe-content ul li {
  margin: 8px 0;
  color: #666;
}

.recipe-content p {
  text-align: left;
  color: #555;
  line-height: 1.8; 
  margin-top: 15px;
}
