body {
  background-color: #eae5f7;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

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

h1 {
  text-align: center;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.5;
}

.form-container {
  text-align: left;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  margin-bottom: 30px;
}

.example {
  font-size: 12px;
  margin-top: 5px;
  font-style: italic;
  opacity: 0.5;
}

form {
  display: flex;
}

input {
  padding: 5px 5px;
  border-radius: 5px;
  font-size: 16px;
}

.poem-query {
  width: 80%;
}

.submit-button {
  margin-left: 10px;
  background: #885df1;
  color: white;
  border: none;
  padding-left: 25px;
  padding-right: 25px;
}

.poem {
  font-size: 14px;
  background-color: #fff;
  padding: 20px;
  line-height: 24px;
  border-left: 3px solid #885df1;
  box-shadow: 0px 20px 60px rgba(39, 33, 66, 0.03);
  border-radius: 5px;
}

.hidden {
  display: none;
}

.blink {
  animation: blink 1s steps(1, end) infinite;
  color: #885df1;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.poem strong {
  color: #885df1;
}

footer {
  text-align: center;
  margin-top: 20px;
  padding: 10px 10px;
  border-top: 1px grey solid;
  font-style: italic;
  font-size: 12px;
  line-height: 1.5;
}
