body {
    background: linear-gradient(275deg, #9b82f3 0%, #c59df0 19%, #f77fa7 67%, #f5f29f 100%);
   font-family: Georgia, 'Times New Roman', Times, serif;
}
a {
    color: #44107A;
}
.container {
     margin: 120px auto;
    max-width: 600px;

}
header {
    margin-bottom: 30px;
}

h1 { 
    text-align: center;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.5;
    color:#44107A;

}
.form-wrap{
    background-color: white;
    margin-bottom: 28px;
    border-radius: 13px;
    box-shadow: 0px 28px 60px rgba(65, 50, 100, 0.8);
    padding: 29px;
}
form{
    display: flex;   
}
.example{
    line-height: 1.5;
    margin-top: 8px;
    opacity: 0.7;
    font-size: 14px;
}
.topic-box{
    padding: 15px;
    border: 1px solid rgba(97, 95, 104, 0.5);
    width: 80%;
    font-size: 18px;
    border-radius: 45px;
    line-height: 20px;
    color: #44107A;

}
.submit-button {
    margin-left: 10px;
    background: #44107A;
    color: white;
    border: none;
    width: 130px;
    font-size: 18px;
    border-radius: 45px;
    padding: 14px 24px;

}
.poem-section {
    font-size: 20px;
    background-color: white;
    padding: 20px;
    line-height: 2;
    border-left: 3px solid #44107A;
    box-shadow: 0px 28px 60px rgba(39, 33, 66, 0.3);
}
.hidden {
    display: none;
}
.poem strong {
    color: #44107A;
}
footer {
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
}
.generating {
    animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
    to {
        visibility: hidden; }
    }
      
    