body {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/174/233/original/Zulu_art.png?1758984544");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  margin: 0;
}

a {
  color: #f96d00;
}

.container {
  margin: 120px auto;
  max-width: 600px;
}

header {
  margin-bottom: 30px;
}

h1 {
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: #f96d00;
  background: whitesmoke;
  opacity: 1;
  border-radius: 10px;
}

.form-container {
  padding: 15px 24px;
  background: radial-gradient(
    circle at 10% 20%,
    rgb(255, 131, 61) 0%,
    rgb(249, 183, 23) 90%
  );
  box-shadow: 20px 20px 30px wheat;
  border-radius: 10px;
  margin-bottom: 30px;
  color: black;
  font-weight: bold;
  opacity: 010;
}

form {
  display: flex;
}

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

.instructions {
  padding: 16px;
  border: 2px solid #1f6f78;
  width: 80%;
  font-size: 13px;
  border-radius: 50px;
  line-height: 20px;
  color: black;
  font-weight: bold;
}

.submit-button {
  padding: 15px 24px;
  border: 2px solid yellowgreen;
  width: 20%;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  line-height: 20px;
  color: yellowgreen;
  background: #1f6f78;
  margin-left: 10px;
}

.recipe {
  padding: 30px;
  background: radial-gradient(
    circle at 10% 20%,
    rgb(255, 131, 61) 0%,
    rgb(249, 183, 23) 90%
  );
  box-shadow: 20px 20px 30px wheat;
  border-radius: 10px;
  display: flex;
  margin-bottom: 30px;
  line-height: 2;
  border-left: 3px solid #155263;
  font-size: 16px;
}

.hidden {
  display: none;
}

footer {
  text-align: center;
  font-size: 16px;
  margin-top: 30px;
  color: white;
  font-weight: bold;
}

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

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