body {
  background: radial-gradient(
    592px at 48.2% 50%,
    rgba(255, 255, 249, 0.6) 0%,
    rgba(162, 142, 222, 0.34) 74.6%
  );
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Merriweather", serif;
}
img {
  display: block;
  margin: 0 auto;
  max-width: 60%;
  padding-top: -200px;
}
a {
  color: #4eafc6;
}

header {
  margin-bottom: 30px;
}

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

form {
  display: flex;
}

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

.container {
  margin: 120px auto;
  margin-top: 80px;
  max-width: 600px;
}
.form-container {
  padding: 20px 30px;
  background-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
  margin-bottom: 30px;
}
.hint {
  line-height: 1.5;
  font-size: 12px;
  margin-top: 10px;
  opacity: 0.6;
}

.prompt {
  padding: 16px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #272044;
}
.submit-button {
  margin-left: 10px;
  background: #4eafc6;
  color: white;
  border: none;
  width: 250px;
  font-size: 16px;
  border-radius: 50px;
  padding: 14px 24px;
}
.quote {
  font-size: 16px;
  background: rgba(255, 255, 255, 0.38);
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #4eafc6;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.03);
}
.hidden {
  display: none;
}
.quote strong {
  color: #8444a0;
}

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