body {
    background-color: #f9f7fe;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

a {
    color: #aaa8f1;
}

.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;
    /* Changed comma to a period */
    color: #272044;
}

.form {
    /* Changed 'from' to 'form' */
    padding: 30px;
    background-color: aliceblue;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    border-radius: 10px;
    display: flex;
    margin-bottom: 30px;
}

.instruction {
    /* Fixed class name (was 'instrution') */
    padding: 16px;
    border: 1px solid rgba(39, 33, 66, 0.5);
    font-size: 16px;
    /* Added missing semicolon */
    border-radius: 50px;
    line-height: 20px;
    color: #272044;
    width: 80%;
}

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

.poem {
    font-size: 16px;
    background-color: #e9e0e0;
    padding: 20px;
    line-height: 1.5;
    border-left: 3px solid #615cf5;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    
}

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