body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f5dbc1;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 50px;
}
.container {
    background-color: #b59c71;
    width: 500px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#output {
    font-family: 'Lucida Sans', sans-serif;
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    text-align: justify;
    background-color: #faf2e5;
    
}

textarea {
    width: 70%;
    max-width: 500px;
    height: 100px;
    border: 1px solid #5c3d1e;
    background-color: #ffffff;
    color: #2c1d0f;
}

button {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #0d4d0d;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

button:hover {
    background-color: #222D1C;
}
