body {
  font-family: "Roboto", sans-serif;
  background-color: #f0eff5;
}

.body-container {
  max-width: 600px;
  margin: 120px auto;
}
header {
  margin-bottom: 30px;
}
h1 {
  text-align: center;
  font-size: 38px;
  line-height: 1.5;
  font-weight: 800;
  color: #272840;
}
a {
  color: #885df1;
}
.form-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 1px solid rgba(65, 50, 100, 0.08);
  padding: 30px;
  margin-bottom: 30px;
}
form {
  display: flex;
}
.hint {
  line-height: 1.5;
  margin-top: 5px;
  opacity: 0.6;
  font-size: 12px;
}
.form-input {
  padding: 16px;
  border-radius: 50px;
  line-height: 20px;
  font-size: 15px;
  width: 80%;
  border: 1px solid rgba(39, 33, 66, 0.5);
}
.submit-button {
  margin-left: 10px;
  background-color: #885df1;
  color: white;
  border: none;
  width: 150px;
  font-size: 16px;
  border-radius: 50px;
}

.the-poem {
  font-size: 14px;
  background-color: #fff;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #885df1;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
  font-weight: 400;
}
footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
  font-weight: 500;
}
.the-poem strong {
  color: #885df1;
}
.hidden {
  display: none;
}
.generating {
  animation: blink 1s step-start 0s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
