body {
    background-color: #f9f7fe;
    font-family: Helvetica, Arial, sans-serif;
}
a {
    color: #885df1;
}

.container {
    max-width: 600px;
    margin: 120px auto;
    padding: 20px;
}
header {
    margin-bottom: 30px;
}

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

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

form {
    display: flex;
}
.poem strong{
    color:#885df1;
}

.hint {
    line-height: 1.5;
    font-size: 12px;
    margin: 5px 0px 0 25px;
    opacity: 0.6;
}

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

.submit-button {
    margin-left: 10px;
    background: #885df1;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 16px;
    width: 150px;
}

.poem {
    font-size: 16px;
    padding: 20px;
    background-color: #fff;
    line-height: 2;
    border-left: 3px solid #885df1;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    border-radius: 5px;

}
@keyframes blink {
    50% { opacity: 0.0; }
}
.loading {
    animation: blink 1s step-start 0s infinite;
}

.hidden {
    display: none;
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #272044;
}