body {
  background-image: url(https://mmaparish.ca/wp-content/uploads/2022/08/hands-to-cross.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

a {
  color: brown;
}

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

header {
  margin-bottom: 30px;
}

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

.form-container {
  background-color: azure;
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0px 20px 60px rgb(117, 94, 65);
}

form {
  display: flex;
}

.hint {
  line-height: 1.5;
  margin-top: 5px;
  opacity: 0.5;
  font-size: 10px;
}

.instructions {
  padding: 16px;
  border: 1px solid rgb(98, 76, 48);
  width: 80%;
  font-size: 16px;
  border-radius: 60px;
  line-height: 20px;
  color: rgb(109, 106, 106);
}

.submit-button {
  margin-left: 10px;
  background: rgb(193, 152, 100);
  color: azure;
  border: none;
  width: 150px;
  font-size: 16px;
  border-radius: 50px;
  padding: 14px 24px;
}

.poem {
  font-size: 16px;
  background-color: azure;
  padding: 20px;
  line-height: 3;
  border-left: 3px solid azure;
  border-radius: 10px;
  box-shadow: 0px 20px 60px rgb(117, 94, 65);
}

.hidden {
  display: none;
}

.poem strong {
  color: burlywood;
}

footer {
  text-align: center;
  font-size: 15px;
  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;
  }
}
