body {
    background-color: beige;
    font-family: Helvetica, Arial, sans-serif;
}
a {
    color: royalblue;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.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: navy;
}

form {
    display: flex;
}
.form-container {
    padding: 15px 20px;
    background-color: white;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    border-radius: 10px;
    margin-bottom: 30px;
}
.hint {
    line-height: 1.5;
    font-size: 12px;
    opacity: 0.6;
    margin-top: 5px;
}
.instructions {
    padding: 16px;
    border: 1px solid rgba(39, 33, 66, 0.5);
    width: 80%;
    font-size: 16px;
    border-radius: 50px;
    line-height: 20px;
    color: #272044;
}
.submit-button {
    margin-left: 10px;
    background: navy;
    color: white;
    width: 140px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
}
.poem {
    font-size: 16px;
    background-color: #fff;
    padding: 20px;
    line-height: 2;
    border-left: 3px solid #885df1;
    box-shadow: 0px 20px 60px rgba(39, 33, 66, 0.03);
}
.hidden {
    display: none;
}
footer {
    text-align: center;
    font-size: 13px;
    margin-top: 30px;
}
.blink {
    animation: blink 1s infinite;
}
@keyframes blink {
    0%   { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 1; }
}
