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

a {
  color: #885df1;
}

.upper-footer {
  font-size: 12px;
  margin-top: -10px;
  text-align: center;
}

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

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

.form-container {
  padding: 20px 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  margin-top: 20px;
}

.form-input {
  padding: 16px 20px;
  border: 1px solid rgba(39, 33, 66, 0.4);
  width: 80%;
  font-size: 15px;
  border-radius: 40px;
  line-height: 15px;
}
.generate-button {
  margin-left: 10px;
  padding: 16px 20px;
  font-size: 15px;
  color: white;
  background-color: #885df1;
  border: none;
  border-radius: 40px;
}

.hint {
  font-size: 12px;
  margin-left: 10px;
  margin-top: 7px;
  opacity: 0.6;
}

.quote-block {
  background-color: white;
  font-size: 14px;
  padding: 20px;
  line-height: 1.5;
  border-left: 3px solid #885df1;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  margin-top: 30px;
}

.quote-block strong {
  font-style: italic;
  color: #885df1;
  font-size: 10px;
  padding: 30px 15px;
}

.hidden {
  display: none;
}

/*blinking text*/
.blinking {
  animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
