body {
  background: beige;
  font-family: Merriweather, Arial, sans-serif;
}

.container {
  max-width: 600px;
  margin: 100px auto;
}

a {
  color: chocolate;
}

header {
  margin-bottom: 20px;
}

h1 {
  font-weight: 700;
  text-align: center;
  font-size: 30px;
  line-height: 1.5;
  color: brown;
}

.form-container {
  padding: 20px;
  border-radius: 16px;
  background: beige;
  border-color: darksalmon;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

form {
  display: flex;
}

::placeholder {
  color: burlywood;
}

.hint {
  color: darksalmon;
  font-family: monospace;
  font-size: 12px;
  margin-top: 10px;
}

.hidden {
  display: none;
}

.instruction {
  padding: 11px;
  border: 1px solid bisque;
  width: 80%;
  color: burlywood;
  font-family: cursive;
  font-size: 16px;
  border-radius: 20px;
  line-height: 15px;
}

.submit-button {
  margin-left: 10px;
  background: burlywood;
  color: brown;
  border: none;
  border-radius: 15px;
  padding: 10px 20px;
  font-size: 16px;
  font-family: cursive;
}

.poem {
  font-size: 16px;
  line-height: 1.2;
  padding: 20px;
  font-weight: 600;
  color: darkred;
  background: beige;
  font-family: Cochin;
  border-left: 3px solid darksalmon;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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

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