body {
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/176/745/original/recipe.jpg?1766398672");
  background-repeat: no-repeat;
  background-size: cover;
  font-family: Arial, Helvetica, sans-serif;
}
.container {
  margin: 120px auto;
  max-width: 600px;
  font-size: 10px;
}
header {
  margin-bottom: 30px;
}
h1 {
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
}
.form-container {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.7);
  margin-bottom: 30px;
}
.hint {
  line-height: 1.5;
  margin-top: 1px;
  opacity: 0.6;
  font-size: 10px;
}
#instructions {
  padding: 16px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  width: 70%;
  color: #272044;
  border: 2px solid #885df1;
  font-size: 16px;
}
.submit-button {
  padding: 16px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  width: 20%;
  margin-left: 10px;
  background: #885df1;
  border: none;
  color: white;
  font-size: 16px;
}
#recipe {
  border-radius: 5px;
  background-color: white;
  box-shadow: 0px 20px 60px rgba(39, 33, 66, 0.5);
  font-size: 16px;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #885df1;
}
.hidden-recipe {
  display: none;
}
.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
}
a {
  color: purple;
}
