body {
  background: radial-gradient(
    circle at 10% 20%,
    rgb(186, 190, 245) 0%,
    rgb(192, 192, 245) 33.1%,
    rgb(218, 203, 246) 90%
  );
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  font-weight: 700px;
  font-size: 35px;
  line-height: 2;
  color: #113f67;
  text-align: center;
}

.container {
  margin: 50px auto;
  max-width: 600px;
}

form {
  display: flex;
}

.recipe-form-container {
  padding: 20px;
  margin-bottom: 25px;
  background-color: #f2f2f2;
  border-radius: 8px;
  /* width: 600px; */
}

.user-prompt {
  padding: 10px;
  border: 3px solid #927fbf;
  width: 800px;
  border-radius: 8px;
  font-size: 14px;
  color: #927fbf;
}

.submit-button {
  font-size: 14px;
  width: 140px;
  border: 2px solid #927fbf;
  color: white;
  margin-left: 15px;
  border-radius: 8px;
  padding: 10px;
  background-color: #927fbf;
}

.submit-button:hover {
  background-color: #f2f2f2;
  color: #927fbf;
  border: 2px solid #927fbf;
  cursor: pointer;
}

.recipe {
  font-size: 14px;
  background-color: #f2f2f2;
  padding: 50px;
  line-height: 2;
  border-left: 8px solid #6643b5;
  border-radius: 8px;
  box-shadow: 0px 15px 20px 0px #cca8e9;
  /* width: 520px; */
  text-align: left;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  line-height: 5px;
}

a {
  color: #6643b5;
}

.hidden {
  display: none;
}

.clue {
  line-height: 1.5;
  margin-top: 15px;
  padding: 10px auto;
  opacity: 0.6;
  font-size: 11px;
  font-style: italic;
  text-align: left;
}

main {
  width: 600px;
}

.incoming {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
