    
body {
    font-family: Arial, sans-serif; 
    background-color: #f4f4f4; 
    margin: 0; 
    padding: 20px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
}


.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px; 
    text-align: center;
}


textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc; 
    border-radius: 5px; 
    font-family: Arial, sans-serif; 
    font-size: 14px;    
    margin-bottom: 10px;
}

/* Botón */
button {
    padding: 10px 20px; 
    background-color: #007BFF; 
    color: white; 
    border: none; 
    border-radius: 5px; 
    font-size: 16px; 
    cursor: pointer; 
}


button:hover {
    background-color: #0056b3;
}


#textDisplay {
    margin-top: 20px;
    padding: 15px; 
    background-color: #f8f9fa;
    border-radius: 5px; 
    font-family: Georgia, serif; 
    font-size: 16px; 
    text-align: justify; 
    color: #333;      
    display: none; 
}

button:focus ~ #textDisplay {
    display: block; 
}