<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background: #f0d9da;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

a {
    color: #b56161;
    text-decoration: none;
}

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

header {
    margin-bottom: 30px;
}

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

form-container {
    background-color: white;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    padding: 15px 20px;
}

form {
    display: flex;
}

.instructions {
    border: 1px solid rgba(39, 33, 66, 0.5);
    width: 80%;
    font-size: 18px;
    border-radius: 50px;
    line-height: 20px;
    color: #b56161;
    padding: 16px;
}

.hint {
    font-size: 12px;
    color: #b56161;
    margin-top: 5px;
    margin-bottom: 8px;
    margin-left: 20px;
}


.submit-button {
    background-color: #b56161;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    margin-left: 10px;
    width: 150px;
}

.poem {
    font-size: 16px;
    background-color: whitesmoke;
    line-height: 2;
    padding: 20px;
    border-left: 3px solid #b56161;
    box-shadow: 0px 4px 30px 0px rgba(65, 50, 100, 0.08);
    margin-bottom: 30px;
}

.hidden {
    display: none;
}

.poem strong {
    color: #b56161;
}

footer {
    text-align: center;
    color: #000000;
    font-size: 14px;
    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;
    }
}</pre></body></html>