body {
  background-color: #eae6dc;
  font-family: "Roboto", serif;
}
a {
  color: rgb(216, 172, 151);
}
.container {
  margin: 120px auto;
  max-width: 600px;
}
header {
  margin-bottom: 30px;
}
h1 {
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: #5f5c5b;
}

.form-container {
  margin-bottom: 30px;
  background-color: white;
  padding: 15px 20px;
  box-shadow: 0px, 20px, 66px rgba(216, 172, 151, 0.4);
  border-radius: 10px;
}
form {
  display: flex;
}
.hint {
  line-height: 1.5;
  font-size: 12px;
  margin-top: 5px;
  opacity: 0.5;
}
.instructions {
  padding: 16px;
  border: 1px solid rgba(216, 172, 151, 0.8);
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #5f5c5b;
}
.submit-button {
  margin-left: 10px;
  background: rgb(216, 172, 151);
  color: white;
  border: none;
  width: 150px;
  font-size: 16px;
  border-radius: 50px;
  padding: 15px 20px;
}

.poem {
  font-size: 16px;
  background-color: #fff;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid rgba(216, 172, 151, 0.8);
  box-shadow: 0px, 20px, 66px rgba(216, 172, 151, 0.4);
}
.poem strong {
  color: rgb(216, 172, 151);
}
.hidden {
  display: none;
}

.generating{
    animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation{
    to{
        visibility: hidden;
    }
}

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