body{
    background-color: rgba(238, 139, 126, 0.751);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}
.container {
    margin: 120px auto;
    max-width: 600px;

}
header{
    margin-bottom: 30px;;
}
a{
    color:  rgb(105, 24, 24);
}

h1{
    text-align: center;
    font-weight: 800;
    font-size: 50px;
    line-height: 2;
    color: #272044;

}
form{
    display:flex;
    
}
.form-container{
    box-shadow: 0px 20px 60pc rgb(144, 53, 53);
    margin-bottom: 30px; 
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    text-align: left;
}
.hint{
    line-height: 1.5;
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.6;
}
.instructions{
    padding: 10px;
    border: 1px solid #8e8a8a;
    width: 80%;
    font-size: 16px;
    border-radius: 50px;
    line-height:  20px;
    color: rgba(224, 10, 10, 0.403)

}
.submit-button{
    margin-left:60px ;
    background: rgb(143, 47, 47);
    color: white;
    border: none;
    width : 150px;
    font-size: 14px;
    border-radius: 50px;
    padding: 14px 24px;
    box-shadow: 0px 20px 60pc rgb(224, 55, 55);
    
}
.hidden{
    display: none;
}
.poem{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    background-color: white;
    padding: 20px;
    line-height:2 ;
    border-left: 5px solid  rgb(143, 47, 47);;
    box-shadow: 0px 20px 60pc rgb(144, 53, 53);
    

}
.poem strong{
    color:  rgb(143, 47, 47);
}
footer{
    text-align: center;
    font-size: 13 px;
    margin-top: 30px;

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

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

