body {
  background-color: #deb6aa;
  font-family: Arial, sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}
.container {
  margin: 120px auto;
  max-width: 600px;
}
h1 {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: rgb(173, 58, 89);
}
.form-container {
  background-color: rgba(52, 0, 21, 0.15);
  margin-bottom: 30px;
  padding: 15px 20px;
  border-radius: 30px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
form {
  display: flex;
}
.hint {
  line-height: 1.5;
  margin-top: 5px;
  font-size: 12px;
  opacity: 0.7;
  font-style: italic;
  color: #333;
}
.prompt {
  padding: 10px;
  border: 1px solid #060606;
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
}
.submit-button {
  padding: 10px;
  border: 1px solid #060606;
  background-color: #db245e;
  font-size: 16px;
  border-radius: 50px;
}
.poem {
  font-size: 16px;
  background-color: #fff;
  padding: 20px;
  line-height: 2;

  border-left: 3px solid #db245e;
  box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
}
.hidden {
  display: none;
}
.poem strong {
  color: #db245e;
}
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;
  }
}
