/* Estilos para el div resultante */
#resultado {
    font-family: 'Arial', sans-serif;      /* Front-family */
    font-size: 18px;                       /* Front-size aumentado */
    text-align: justify;                   /* Alineación justificada */
    background-color: #0edfff;               /* Fondo suave */
    color: #ff0000;                          
    padding: 20px;
    border: 2px solid #ddd;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    border-radius: 8px;
    line-height: 1.6;
    letter-spacing: 0.5px;                
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); 
  }
  
  /* Estilos para el área de texto */
  textarea {
    font-family: 'Courier New', sans-serif;
    font-size: 16px;
    padding: 10px;
    border: 2px solid #7600b1;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Estilos para el botón */
  button {
    background-color: #007BFF;
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  