body {
  background-color: #a393eb;
  font-family: Helvetica, Arial, sans-serif;
}

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

header {
  margin-bottom: 40px;
}

h1 {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: #27296d;
}

.form-wrapper {
  margin-bottom: 40px;
  background-color: #c017558e;
  padding: 10px 15px;
  border-radius: 20px;
  box-shadow: 0px 20px 60px rgba(252, 53, 129, 0.8);
}

form {
  display: flex;
}

.hint {
  line-height: 1.5;
  margin-top: 6px;
  opacity: 0.4;
  font-size: 12px;
}

.prompt {
  padding: 16px;
  border: 2px solid #c3bef0;
  width: 80%;
  font-size: 14px;
  border-radius: 40px;
  line-height: 20px;
  color: #27296d;
}

.submit-button {
  margin-left: 10px;
  background: #c3bef0;
  color: #27296d;
  border: none;
  width: 140px;
  font-size: 14px;
  border-radius: 40px;
  padding: 14px 24px;
}

.poem {
  font-size: 16px;
  background: #27296d;
  color: #a0c0f0;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #99bcf0;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
}

.hidden {
  display: none;}

.poem strong {
  color: rgba(252, 53, 129, 0.8);
}

a:link {
  color: #bc2525;
}
a:visited {
  color: #99bcf0;
}
a:hover {
  background-color: #a393eb;
  color: white;
}

footer {
  font-size: 12px;
  color: #680202;
  text-align: center;
  margin-top: 40px;
}

.generating {
  animation: blink-animation 1s steps(5, start) infinite;}

@keyframes blink-animation {
  to {
    visibility: hidden;
  } 
}
  @-webkit-keyframes blink-animation {
    to {
      visibility: hidden;
    }
  } 