body {
    background-color: paleturquoise;
}

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

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #272044;
    margin-bottom: 30px;
}

form {
    display: flex;
    gap: 10px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 10px 30px 0px rgba(39, 33, 66, 0.3);

}

input {              
    flex: 1;
    padding: 10px 20px;
    border: 1px solid rgba(39, 33, 66, 0.5);
    border-radius: 50px;
    width: 80%;
    font-size: 16px;
    line-height: 20px;
    color: #272044;
}

button {
    padding: 10px 20px;
    background-color: #272044;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    width: 150px;
}

.poem {
    background-color: #272044;
    color: white;
    padding: 20px;
    margin-top: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    line-height: 2;
    border-radius: 5px;
    border-left: 5px solid #885df1;
    box-shadow: 0px 10px 30px 0px rgba(39, 33, 66, 0.3);
}

a {
    color: #885df1;
    text-decoration: none;
}

footer {
    text-align: center;
    font-size: 0.8em;
    color: rgba(39, 33, 66, 0.5);
}

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

@-webkit-keyframes blink-animation {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}