body {
  background-color: rgb(226, 248, 247);
}
header {
  margin-bottom: 30px;
}

.container {
  margin: 120px auto;
  max-width: 800px;
  font-family: Arial, Helvetica, sans-serif;
}

.form-container {
  background-color: white;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 30px rgba 39 33 66 0.4;
  padding: 15px 20px;
}

h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
  color: #272044;
}

form {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
}

.search-input {
  background-color: #f9f7fe;
  border: none;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  padding: 20px;
  width: 80%;
  border-radius: 50px;
}

.submit-input {
  margin-left: 5px;
  font-size: 16px;
  background-color: #885df1;
  color: white;
  border: none;
  padding: 20px;
  border-radius: 50px;
  line-height: 1;
}

.poem {
  font-size: 16px;
  background-color: white;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #885df1;
  box-shadow: 0px 4px 30px rgba 39 33 66 0.4;
}

footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
}

.hint {
  line-height: 1;
  margin-top: 5px;
  opacity: 0.6;
  font-size: 12px;
}

.hidden {
  display: none;
}

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