body {
  background-color: #f9f7fe;
  font-family: "Times New Roman", Times, serif;
}

header {
  margin-bottom: 30px;
}

h1 {
  text-align: center;
}

main {
  margin-bottom: 30px;
}

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

small {
  opacity: 0.6;
}

footer {
  text-align: center;
}

a {
  color: #885df1;
}

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

.form-container {
  background-color: white;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 30px;
}

.hidden {
  display: none;
}

.poem {
  font-size: 18px;
  line-height: 2;
}

.poem strong {
  color: #885df1;
}

.poem-container {
  background-color: white;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  border-left: 5px solid #885df1;
  padding: 5px 20px;
}

.search-bar {
  border: 1px solid rgba(39, 33, 66, 0.5);
  border-radius: 20px;
  font-size: 16px;
  padding: 10px;
  width: 65%;
}

.submit-button {
  background-color: #885df1;
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 16px;
  margin-left: 10px;
  padding: 10px;
  width: 150px;
}

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
