body {
  background: rgb(189, 189, 231);
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  max-width: 800px;
  margin: 50px auto;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

h1 {
  color: rgb(255, 255, 255);
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: #272044;
}

.form-container {
  padding: 15px 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

header {
  margin-bottom: 30px;
}

form {
  display: flex;
}

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

.instructions {
  flex: 1;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 16px;
  line-height: 20px;
  color: #272044;
}

#submit {
  padding: 16px 32px;
  background-color: #272044;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
}

.poem {
  margin-top: 20px;
  padding: 20px;
  background-color: white;
  font-size: 18px;
  line-height: 1.5;
  color: #272044;
  box-shadow: #7b6f6f;
  border-left: 3px solid #553cb7;
}

.poem strong {
  color: #553cb7;
}

.hidden {
  display: none;
}

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

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

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

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