body {
  background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

a {
  color: #aa076b;
}

.container {
  margin: 60px auto;
  max-width: 800px;
}

header {
  margin-bottom: 30px;
}

h1 {
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: #aa076b;
}

.form-container {
  background-color: white;
  margin-bottom: 30px;
  padding: 20px;
  box-shadow: 0px 20px 60px rgba(39, 33, 66, 0.03);
  border-radius: 15px;
}

form {
  display: flex;
}

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

.instructions {
  padding: 15px;
  border: 2px solid #aa076b;
  width: 70%;
  font-size: 16px;
  border-radius: 25px;
  line-height: 20px;
  color: #000;
}

.submit-button {
  background-image: linear-gradient(
    to right,
    #aa076b 0%,
    #61045f 51%,
    #aa076b 100%
  );
  margin-left: 10px;
  padding: 15px 25px;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 25px;
  border: none;
  font-size: 16px;
  display: block;
  width: 150px;
}

.submit-button:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.recipe {
  font-size: 16px;
  background-color: #fff;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #aa076b;
  box-shadow: 0px 20px 60px rgba(39, 33, 66, 0.03);
}

.hidden {
  display: none;
}

.recipe strong {
  color: #aa076b;
}

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

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

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