body {
  background: #f9f7fe;
}

h1 {
  color: #db70a2;
}
a {
  color: #e24990;
}
.container {
  margin: 120px auto;
  max-width: 600px;
}

.form-container {
  background: white;
  padding: 20px 30px;
  box-shadow: 0px 20px 60px rgbs(65, 50, 100, 0.08);
  border-radius: 10px;
  margin-bottom: 30px;
}

.form-instructions {
  color: #6c757d;
  border: 1px #6c757d solid;
  line-height: 20px;
  width: 300px;
  padding: 20px 30px;
  border-radius: 25px;
  font-size: 14px;
}
.form-button {
  background-color: #e24990;
  border: none;
  color: white;
  width: 100px;
  padding: 20px;
  border-radius: 25px;
  font-size: 15px;
}

.recipe {
  font-size: 16px;
  background-color: white;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #e24990;
  box-shadow: 0px 20px 60px rgbs(65, 50, 100, 0.08);
}

.recipe strong {
  color: #e24990;
}

.hint {
  color: #6c757d;
  line-height: 1.5;
  margin-top: 5px;
  opacity: 0.6;
  font-size: 12px;
}

.hidden {
  display: none;
}

footer {
  font-size: 17px;
  color: #505458;
}

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

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