body {
  background: #dff7d0;
}
.container {
  margin: 80px auto;
  max-width: 650px;
  display: block;
  padding: 35px 15px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 13px;
}
h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.6;
  margin-top: -10px;
}
.subHeading {
  font-size: 18px;
  margin-top: -10px;
  opacity: 0.7;
}
.form-generator {
  padding: 18px;
  background-color: white;
  margin: auto;
  border: none;
  border-radius: 13px;
  box-shadow: 10px 10px 20px rgba(223, 203, 203, 0.2);
}
.hint {
  opacity: 0.6;
  font-size: 12px;
  margin-top: 5px;
}

form {
  display: flex;
}
.insert {
  padding: 12px;
  width: 75%;
  border-radius: 40px;
  border: 2px solid #ccfaaf;
  line-height: 20px;
  font-size: 14px;
}
.submit-button {
  border-radius: 40px;
  border: none;
  font-size: 14px;
  background-color: #32a852;
  color: #fff;
  width: 25%;
  margin-left: 10px;
}
.recipe {
  padding: 20px;
  background-color: white;
  margin: 20px auto;
  border-radius: 13px;
  border-left: 3px solid #32a852;
  line-height: 20px;
  font-size: 17px;
  box-shadow: 10px 10px 20px rgba(223, 203, 203, 0.2);
}
a {
  color: rgb(26, 90, 3);
}
footer {
  text-align: center;
  font-size: 12px;
}
.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}

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