body {
  background-color: rgb(238, 238, 238);
  background-image: url(https://th.bing.com/th/id/R.bbc0556480c99c064f104d031c59483b?rik=st5kRcg0pzfNTg&pid=ImgRaw&r=0);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

a {
  color: rgba(27, 142, 208, 0.586);
  font-weight: 550;
  font-family: "Courier New", Courier, monospace;
}

h1 {
  text-align: center;
  font-family: "Courier New", Courier, monospace;
}

form {
  display: flex;
  padding-bottom: -5px;
}

.hint {
  line-height: 1.5;
  font-size: 12px;
  font-family: "Courier New", Courier, monospace;
  margin-bottom: 20px;
}

.instructions {
  padding: 15px;
  border: 1px solid rgba(19, 19, 19, 0.5);
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #272044;
}

.submit-button {
  margin-left: 10px;
  background: rgba(22, 154, 237, 0.542);
  color: white;
  border: none;
  width: 150px;
  font-size: 15px;
  border-radius: 50px;
  padding: 14px 24px;
}

.poem {
  font-size: 15px;
  font-family: "Courier New", Courier, monospace;
  font-weight: 550;
  background-color: rgba(212, 235, 249, 0.558);
  padding: 20px;
  line-height: 2;
  border-left: 6px solid rgba(22, 154, 237, 0.542);
  box-shadow: 0px 4px 30px 0px rgba(76, 175, 236, 0.542);
}

hidden {
  display: none;
}

.poem strong {
  color: blue;
}

footer {
  text-align: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 15px;
  font-weight: 550;
  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;
  }
}
