body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f8d6e7e7;
  color: #333;
  margin: 0;
  padding: 20px;
}
a {
  color: #c04981;
  text-decoration: none;
}
.container {
  max-width: 700px;
  margin: 120px auto;
  padding: 20px;
  background-color: #f2ebef44;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.211);
}
h1 {
  color: #c04981;
  text-align: center;
  font-size: 36px;
  line-height: 1.5;
}
footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8em;
  color: #666;
}
.form-container {
  padding: 30px;
  background-color: #f2ebef44;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.1);
}
form {
  display: flex;
}
.hint {
  font-size: 12px;
  color: #888;
  margin-bottom: 5px;
  line-height: 1.5;
}
.instructions {
  margin-bottom: 20px;
  font-size: 16px;
  color: #555;
  width: 80%;
  padding: 10px;
  border: 1px solid #c04981;
  border-radius: 50px;
  line-height: 20px;
  align-self: center;
}
.submit-button {
  background-color: #c04981;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  width: 20%;
  align-self: center;
}
.poem {
  font-size: 15px;
  line-height: 2;
  margin-top: 20px;
  padding: 20px;
  background-color: #f8e9f0cd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.211);
}
.hidden {
  display: none;
}
.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}

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