.container{
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: lightblue;
    border-radius: 8px;
}
body{
    background: #f0f0f0;
}
h1{
    text-align: center;
    color: #333;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    font-size: 35px;
}
form {
    display: flex;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}
.poem-generator {
    width: 150%;
    padding: 14px 24px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 80px;
    line-height: 20px;
    font-size: 16px;
    color: #333;
}
.generator {
    margin-left: 10px;
    width: 25%;
    padding: 10px 15px;
    background-color: #e1a4c4;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 12px;
    line-height: 10px;
}
.poem-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(181, 217, 242, 0.1);
    margin-top: 20px;
}
 a {
    color: #007bff;
    display: inline-block;
}
p{
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    text-align: center;
}
.hint{
    font-size: 12px;
    color: #f10583;
    text-align: center;
    margin-top: 10px;
}
.hidden{
    display: none;
}
.blink {
    animation: blink-animation 1s steps(5, start) infinite;
}