body {
  background-color: #d2ebcd;
  font-family: Arial, Helvetica, sans-serif;
}

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

header {
  margin-bottom: 30px;
}

h1 {
  text-align: center;
  font-size: 32px;
}

.form-container {
  padding: 30px;
  background-color: #fffcef;
  border-radius: 10px;
}
form {
  display: flex;
}

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

.recipe-prompt {
  padding: 10px;
  width: 88%;
  font-size: 16px;
  border-radius: 5px;
  line-height: 20px;
}

.submit-button {
  border: 1px solid;
  border-radius: 10px;
  margin-left: 10px;
  background-color: #393939;
  color: white;
  font-size: 16px;
  line-height: 20px;
  width: 100px;
}

.recipe {
  padding: 30px 10px;
  background-color: #fffcef;
  line-height: 24px;
  border-radius: 10px;
  margin-top: 30px;
  border-left: 3px solid #393939;
}

.hidden {
  display: none;
}

footer {
  margin-top: 30px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

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

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