body{
    background-color: #f9f7fe;
}
h1{
    font-weight: 800;
    font-size:36px;
    line-height:1.5;
    color:#272044;
    text-align:center;
    

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

}
.form-container{
    padding:30px;
    background-color: white;
    border-radius:10px;
    margin-bottom: 20px;
  
}
form{
     display: flex;
}
.hint{
    line-height: 1.4;
    margin-top: 18px;
    opacity:0.6;
    font-size: 12px;
}
.instructions{
    padding:18px;
    border:1px solid rgbd(39,33,66,0.5);
    width:80%;
    font-size:16px;
    border-radius:50px;
    line-height:20px;
    color:#272044;


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

}
.poem{
    font-size: 16px;
    background-color: white;
    line-height:2;
    padding:20px;
    border-radius:10px;
    border-left: 3px solid  #885df1;;
}
.generating {
    animation: blink-animation 1s steps(2, start) infinite;
  }
  
  @keyframes blink-animation {
    0%, 100% { visibility: visible; }
      50% { visibility: hidden; }
  }
  
.hidden{
    display:none;
}
a{
    color: #885df1;
}
strong{
    color: #885df1;
}
footer{
    text-align: center;
    font-size: 15px;;
    margin-top: 20px;

}