body {
  background-color: #f7e9ee;
  font-family: "Montserrat", sans-serif;
}

a {
  color: #cf5980;
  font-weight: 800;
}

a:hover {
  color: #542a3a;
  cursor: pointer;
}

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

header {
  margin-bottom: 30px;
}

h1 {
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  background-image: linear-gradient(
    100deg,
    rgba(207, 89, 128, 1) 0%,
    rgba(153, 73, 104, 1) 50%,
    rgba(126, 70, 96, 1) 100%
  );
  background-clip: text;
  color: transparent;
}

.icon {
  text-align: center;
}

.fa-kitchen-set {
  margin: 0 auto;
  font-size: 50px;
  background-image: linear-gradient(
    100deg,
    rgba(207, 89, 128, 1) 0%,
    rgba(153, 73, 104, 1) 50%,
    rgba(126, 70, 96, 1) 100%
  );
  background-clip: text;
  color: transparent;
}

.form-container {
  padding: 30px;
  background: linear-gradient(
    100deg,
    rgba(207, 89, 128, 1) 0%,
    rgba(153, 73, 104, 1) 50%,
    rgba(126, 70, 96, 1) 100%
  );
  border-radius: 10px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  margin-bottom: 30px;
}

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

form {
  display: flex;
  position: relative;
}

.instructions {
  padding: 20px;
  border: none;
  width: 100%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #272044;
}

.submit-btn {
  margin-left: 10px;
  background: linear-gradient(
    100deg,
    rgba(207, 89, 128, 1) 0%,
    rgba(153, 73, 104, 1) 50%,
    rgba(126, 70, 96, 1) 100%
  );
  color: white;
  border: none;
  width: 120px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 50px;
  padding: 16px 24px;
  position: absolute;
  right: 1%;
  top: 8%;
}

.recipe {
  font-size: 16px;
  background-color: white;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #994968;
  border-radius: 10px;
  box-shadow: 0px 4px 30px 0px rgba (39, 33, 66, 0.5);
}

.hidden {
  display: none;
}

.recipe strong {
  background-image: linear-gradient(
    100deg,
    rgba(207, 89, 128, 1) 0%,
    rgba(153, 73, 104, 1) 50%,
    rgba(126, 70, 96, 1) 100%
  );
  background-clip: text;
  color: transparent;
}

footer {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
  color: #7e4660;
}
.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}

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