body {
  background: #f9f5f0;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}
.container {
  margin: 120px auto;
  max-width: 860px;
  width: 100%;
}
a {
  color: #f4991a;
  font-size: 14px;
}
a:hover {
  color: rgb(128, 43, 20);
}
h1 {
  text-align: center;
  font-weight: 800px;
  font-size: 36px;
  line-height: 1.5em;
  /* color: rgb(14, 14, 96); */
  color: #321313;
}
header {
  margin-bottom: 30px;
}
.form-container {
  padding: 28px 46px;
  background-color: rgb(252, 233, 210);

  border-radius: 10px;
  box-shadow: 0px 20px 40px rgb(175, 147, 112);
  border-radius: 10px;
  margin-bottom: 30px;
}

.submit-button {
  margin-left: 15px;
  padding: 6px 10px;
  background-color: rgb(5, 150, 155);
  color: azure;
  border: none;
  border-radius: 50px;
  width: 150px;
  font-size: 14px;
}
form {
  display: flex;
}
.hint {
  line-height: 1.5em;
  font-size: 14px;
  margin-top: 8px;
  text-align: start;
  opacity: 0.6;
}
.instructions {
  padding: 14px;
  border: 1px solid rgb(119, 128, 128);
  font-size: 18px;
  border-radius: 50px;
  line-height: 1.2em;
  width: 80%;
  color: rgb(26, 71, 71);
}
.recipe {
  text-align: start;
  font-size: 18px;
  background-color: rgb(252, 233, 210);
  padding: 38px;
  line-height: 1.5em;
  border-left: 5px solid rgb(5, 150, 155);
  color: rgb(26, 71, 71);
  box-shadow: 0px 20px 40px rgb(175, 147, 112);
  border-radius: 10px;
  margin-bottom: 36px;
}
.recipe strong {
  color: rgb(5, 150, 155);
}
.hidden {
  display: none;
}
footer {
  text-align: center;
  font-size: 14px;
}
.generating {
  animation: blinc 1s step-start 0s infinite;
}

@keyframes blinc {
  50% {
    opacity: 0;
  }
}
