body {
  background-image: url(https://static1.squarespace.com/static/651f3a38b2f69811ea35c9f1/651f3a65594ad851a1ee208c/651f3ab530bd200b53458b17/1700690905254/Cover.jpg?format=1500w);
  background-size: cover;
  font-family: "Courier New", Courier, monospace;
}

.central {
  margin: 120px auto;
  max-width: 600px;
  background-color: rgba(194, 170, 138, 0.781);
  border-radius: 10px;
}

header {
  margin-bottom: 30px;
}

h1 {
  text-align: center;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.5;
  color: rgb(55, 12, 12);
}

form {
  display: flex;
}

.hint {
  line-height: 1.5;
  margin-top: 5px;
  opacity: 0.8;
  font-size: 16px;
}

.recipe-prompt {
  padding: 16px;
  border: none;
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #272044;
}

.submit-button {
  margin-left: 10px;
  background-color: maroon;
  color: antiquewhite;
  border: none;
  border-radius: 25px;
  padding: 24px, 24px;
  font-size: 16px;
}

.ingredients {
  font-size: 16px;
  padding: 20px;
  line-height: 1.5;
  background-color: rgba(251, 220, 181, 0.864);
  border-top: 3px solid maroon;
  border-bottom: 3px solid maroon;
  font-weight: bold;
}

.instructions {
  font-size: 18px;
  text-align: center;
  padding: 20px;
  line-height: 1;
  background-color: rgba(119, 6, 6, 0.879);
  color: black;
  font-weight: bolder;
}

a {
  color: rgba(119, 6, 6, 0.879);
  font-weight: 800;
  font-size: 14px;
}

footer {
  padding: 20px;
  font-weight: 500;
}

.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

.hidden {
  display: none;
}
