body {
  display: block;
  background-color: rgb(246, 226, 243);
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

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

header {
  margin-bottom: 20px;
}

h1 {
  text-align: center;
  font-weight: 750;
  font-size: 36px;
  line-height: 1.5;
  color: rgb(4, 4, 65);
}

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

form {
  display: flex;
}

.instructions {
  padding: 15px;
  border: 1px solid grey;
  width: 80%;
  font-size: 16px;
  border-radius: 35px;
  line-height: 22px;
  color: rgb(4, 4, 65);
}
.submit-button {
  margin-left: 10px;
  background: rgb(148, 107, 141);
  border-radius: 20px;
  padding: 14px 24px;
  font-size: 16px;
  width: 125px;
  color: #fff;
}

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

.poem {
  display: block;
  font-size: 16px;
  background-color: #fff;
  padding: 15px;
  line-height: 2;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.05);
  border-radius: 5px;
  bottom: auto;
}

.hidden {
  display: none;
}

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

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

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