body {
  background: #590113;
  background: linear-gradient(
    0deg,
    rgba(89, 1, 19, 1) 0%,
    rgba(245, 27, 27, 1) 42%,
    white 76%,
    rgba(33, 140, 0, 1) 100%
  );
  height: 100%;
  margin: 0;
  background-repeat: none;
  background-attachment: fixed;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: lightgreen;
}

.container {
  margin: 120px auto;
  max-width: 600px;
  background-color: white;
  opacity: 80%;
  border-radius: 20px;
}

form {
  padding: 5px 0px;
  background-color: white;
  border-color: darkgreen;
  display: flex;
  border-radius: 5px;
  margin-bottom: 5px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
}

h1 {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.5;
  color: darkgreen;
  text-align: center;
  margin: 5px;
  padding: 30px 5px 10px 5px;
}

header {
  margin: 10px;
}

.instruction {
  padding: 16px;
  border: 1px solid darkgreen;
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #272044;
}

footer {
  text-align: center;
  color: white;
  font-size: 14px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.submit-button {
  margin-left: 10px;
  background-color: darkgreen
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px;
  width: 100px;
  font-size: 16px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
}

.recipe {
  font-size: 14px;
  background-color: white;
  padding: 20px;
  line-height: 24px;
  border-left: 3px solid darkgreen;
  box-shadow: 0px 4px 30px rgba(65, 50, 100, 0.08);
}

.recipe strong {
  color: darkgreen;
  text-align: left !important;
}

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

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

.hidden {
  display: none;
}

.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
