body {
    background: #f0ece2;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a {
    color: #596e79;
}

h1 {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.5;
    color: #596e79;
}
.container {
    margin: 120px auto;
    max-width: 600px;
    background-color: whitesmoke;
    border-radius: 10px;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, .3);

    padding: 40px;
}

header {
    margin-bottom: 30px;   
}


form {
    padding: 30px;
    background-color: #F5F5F5;
    display: flex;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, .1);
    margin-bottom: 30px;
    border-left: 3px solid #596e79;
    border-radius: 10px;

}

.instructions {
    border: 1px solid #596e79;
    padding: 16px;
    width: 80%;
    font-size: 16px;
    border-radius: 50px;
    line-height: 20px;
    color: #596e79;
    background-color: #F5F5F5;
}

.submit-button {
    margin-left: 10px;
    background: #596e79;
    color: whitesmoke;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    width: 150px;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, .08)
}

.poem {
    font-size: 14px;
    background-color: white;
    padding: 20px;
    line-height: 1.5;
    font-size: 16px;
    border-left: 3px solid #596e79;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, .08);
    border-radius: 10px;
}

.hidden {
    display: none;
}

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