body {
    background: rgb(194, 184, 184);
}

.container {
    display: block;
    margin: 50px;
}

form {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    background-color: beige;
    border-radius: 6px;
    
}

.prompt-space {
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    width: 100%;
}

.submit-button {
    padding: 15px;
    font-size: 16px;
    background-color: plum;
    color: white;
    border: 1px solid palevioletred;
    border-radius: 6px;
    margin-left: 50px;
}

.poem-content {
    background-color: white;
    padding: 30px;
    border-left: 5px solid palevioletred;
    font-size: 18px;
    line-height: 2;
    border-radius: 6px;
    width: 95%;
    margin-top: 10px;
}

footer {
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
}

.hidden {
    display: none;
}

.hint {
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.7;
}

.input-group {
    display: flex;
    flex-direction: column;
    width: 80%;
}