h1 {
  font-family: "Manufacturing Consent", system-ui;
  font-weight: 800;
  font-style: normal;
  font-size: 60px;
  color: black;
  text-align: center;
  background: rgba(128, 128, 128, 0.014);
  padding: 80px;
  margin: auto;
}

.material-symbols-outlined {
  font-family: "Material Icons Outlined";
  font-size: 90%;
}

.header {
  background-image: url("https://images.pexels.com/photos/1640773/pexels-photo-1640773.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 20px;
  margin-bottom: 50px;
  height: 250px;
}
.hidden {
  display: none;
}
.generating {
  animation: blink-animation 1s steps(5, start) infinite;
  text-align: center;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
body {
  margin: 0;
  padding: 10px;
  font-family: "Roboto", sans-serif;
  background: linear-gradient(
    109.6deg,
    rgb(36, 45, 57) 11.2%,
    rgb(16, 37, 60) 51.2%,
    rgb(0, 0, 0) 98.6%
  );
}

.main-content {
  padding: 15px;
  max-width: 99%;
  max-height: auto;
  padding: 15px;
  margin: 0 auto;
  background-color: white;
  border-radius: 20px;
}

/* Sample media query for responsive design */
@media (max-width: 768px) {
  .example-class {
    flex-direction: column;
  }
}

.recipe-label {
  font-weight: bold;
  font-size: 30px;
  padding: auto;
  margin: 5px 20px;
}
.recipe-input {
  width: 40%;
  padding: 10px 20px;
  margin: 5px 30px;
  font-size: 20px;
  border-radius: 3px;
  border: 1px solid #ccc;
}

.submit {
  padding: 10px 20px;
  font-size: 20px;
  border-radius: 5px;
  border: none;
  background-color: blueviolet;
  color: white;
  cursor: pointer;
  border-radius: 10px;
}
.recipe-output {
  margin-top: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  text-align: center;
}

.recipe-ingredients {
  margin-top: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
}
.recipe-ingredients h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: blueviolet;
}
.recipe-ingredients p {
  font-size: 18px;
  line-height: 1.5;
}
h2 {
  font-size: 30px;
  color: blueviolet;
  margin-top: 20px;
}
h3 {
  font-size: 20px;
  color: rgb(226, 43, 195);
  margin-top: 10px;
  text-align: center;
  text-decoration: underline;
  font-style: bold;
}
.recipe-instructions {
  margin-top: 20px;
  padding: 20px;
}
.recipe-instructions h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: blueviolet;
}
.recipe-instructions p {
  font-size: 18px;
  line-height: 1.5;
}
#status-message {
  font-size: 20px;
  color: blueviolet;
  text-align: center;
  margin-top: 20px;
}
/* Optional: Style the blinking cursor */
#cursor {
  font-weight: bold;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #f1f1f1;
  margin-top: 20px;
  border-radius: 10px;
}
