body {
  background-color: #bad8b6;
  font-family: "Inria Sans", sans-serif;
}

p {
  color: #5c715e;
}
a {
  color: #01352c;
  font-size: 13px;
}

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

.input {
  padding: 16px;
  border: none;
  border-left: 3px solid #61b390;
  box-shadow: 0 10px 50px rgba(118.5, 123.5, 165, 0.3);
  width: 80%;
  font-size: 16px;
  line-height: 20px;
  color: #01352c;
  font-family: "Inria Sans", sans-serif;
}

.submit {
  margin-left: 10px;
  background: #61b390;
  color: aliceblue;
  border: none;
  box-shadow: 0 10px 50px rgba(118.5, 123.5, 165, 0.3);
  padding: 14px 25px;
  width: 150px;
  font-size: 16px;
}

.form-container {
  background-color: white;
  margin-bottom: 30px;
  box-shadow: 0 10px 50px rgba(118.5, 123.5, 165, 0.3);
  padding: 30px;
  padding-bottom: 20px;
  border-left: 3px solid #61b390;
}

form {
  display: flex;
}

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

header {
  margin-bottom: 30px;
}

h1 {
  text-align: center;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.5;
  color: #01352c;
}

.poem {
  font-size: 16px;
  background-color: white;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #61b390;
  box-shadow: 0 10px 50px rgba(118.5, 123.5, 165, 0.3);
  color: #01352c;
}

.hidden {
  display: none;
}

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

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

@keyframes blink-animation {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}
