body {
  background-color: rgb(226, 218, 233);
  font-family: Helvetica, sans-serif;
}

.container {
  margin: 120px auto;
  max-width: 600px;
}
 a {
  color: rgb(164, 121, 207);
 }
header {
  text-align: center;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.5em;
  color: rgb(46, 44, 44);
  padding-bottom: 30px;
}
.form-wrapper {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  border-right: 3px solid rgb(164, 121, 207);
  margin-bottom: 15px 20px;
}
form {
  display: flex;
}

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

.instructions {
 padding: 20px;
 font-size: 15px;
 border: 1px solid rgba(208, 195, 221, 0.5);
 color: rgb(46, 44, 44);
 border-radius: 50px;
 width: 80%;
 line-height: 20px;
}

.submit-button {
  margin-left: 10px;
  background-color: rgb(173, 139, 207);
  border: none;
  border-radius: 50px;
  color: white;
  width: 150px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 400;
}

.quote {
  margin-top: 30px;
  font-size: 16px;
  padding: 30px;
  background-color: white;
  line-height: 1.5;
  border-left: 3px solid rgb(164, 121, 207);
  border-radius: 3px;
  box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
}
.hide {
  display: none;
}

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

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

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

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

