body{
    background-color: #f9f7fe;
}
header{
    margin-bottom: 30px;
}
form{
    display: flex;
}
footer{
    text-align: center;
    font-size: 13px;
}
a{
    color: #885df1;
}
.form-container{
    background-color: #ffff;
        padding: 32px;
        box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
        margin-bottom: 30px;
        border-radius: 16px;
}
.hint {
    line-height: 1.5;
    margin-top: 5px;
    opacity: 0.6;
    font-size: 12px
}
.prompt{
    padding: 16px;
    width: 80%;
    border-radius: 42px;
    border: 1px solid rgba(39, 33, 66, 0.5);
    font-size: 16px;
}
.submit-button{
  padding: 16px;
  margin-left: 8px;
  border-radius: 42px;
  width: 120px;
  border: none;
  background-color: #885df1;
  color: #ffff;
  font-size: 16px;
  
}
.container{
    max-width: 600px;
    margin: 120px auto;
}
.poem{
    background-color: #ffff;
    padding: 24px;
    line-height: 2;
    font-size: 16px;
    border-left:2px solid#885df1 ;
    margin-bottom: 30px;
    color: #27242f;
    box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
}
.poem strong {
    color: #885df1;
}
.hidden{
    display: none;
}

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

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

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