body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f9f7fe;
}
a {
  color: #885df1;
}
h1 {
  text-align: center;
}
header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
}
main {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

footer {
  padding-top: 10px;
  margin-top: 15px;
  text-align: center;
  font-size: 12px;
}
form {
  background-color: white;
  border-radius: 25px;
  display: flex;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
}
main {
  padding: 15px;
}
.poem-app {
  margin: 0 auto;
  background-color: #f9f7fe;
  padding: 20px;
  max-width: 600px;
}
.topic-input {
  margin: 15px 15px 0px;
}
.input-text {
  font-size: 16px;
  line-height: 24px;
  width: 80%;
  border-radius: 25px 0 0 25px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  padding: 10px 25px;
}
.submit-button {
  font-size: 16px;
  line-height: 24px;
  color: white;
  background-color: #885df1;
  margin-left: 5px;
  padding: 5px 12px;
  border-radius: 0 25px 25px 0;
  border: none;
}
.poem-heading {
  font-size: 24px;
  line-height: 36px;
  font-weight: bold;
  text-align: center;
}
.poem-author {
  text-align: center;
  font-size: 12px;
  opacity: 0.5;
}
.poem-text {
  font-size: 16px;
  line-height: 2;
  text-align: left;
  margin-top: 10px;
}
.hint {
  font-size: 12px;
  margin: 5px 40px 15px;
}
.hidden {
  display: none;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.blink {
  animation: blink 1s steps(5, start) infinite;
}
