body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f4f4f4;
    background: linear-gradient(to bottom right, #22223B, #9A8C98);
}

textarea {
    width: 80%;
    height: 100px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.37); 

}

button {
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    background: #C9ADA7;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.37); 

}

.output {
    width: 80%;
    padding: 20px;
    margin-top: 20px;
    background-color: #4A4E69; 
    border-radius: 10px;
    color: #fc68fc; 
    font-weight: bold; 
    font-family: 'Courier New', Courier, monospace; 
    font-size: 1.2em; 
    text-align: justify;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.37); 

}
