body {
  background-color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: white;
}

.container {
  margin: 120px auto;
  max-width: 600px;
  background-color: #bfa89e;
  border-radius: 9px;
  padding-bottom: 15px;
  padding-left: 15px;
}

header {
  margin-bottom: 30px;
}

h1 {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: #5e4c5a;
  text-align: center;
}

.form-container {
  background-color: #5e4c5a;
  margin-bottom: 28px;
  border-radius: 9px;
  padding: 30px;
  margin-right: 18px;
}

form {
  padding: 20px;
  margin-right: 20px;
  display: flex;
  font-weight: bolder;
}

.hint {
  line-height: 1.5;
  font-size: 12px;
  margin-top: 5px;
  color: grey;
}

.instructions {
  padding: 16px;
  border: none;
  background-color: #fae5c7;
  width: 80%;
  border-radius: 10px;
  line-height: 20px;
  color: #5e4c5a;
}

.submit-button {
  margin-left: 10px;
  padding: 14px 24px;
  background-color: #fae5c7;

  border: none;
  width: 150px;
  border-radius: 10px;
  line-height: 20px;
  color: #5e4c5a;
}

.poem {
  font-size: 14px;
  border-left: 2px solid #fae5c7;
  padding: 20px;
  line-height: 24px;
}

.hidden {
  display: none;
}

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

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

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

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