body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    padding: 20px;
}

h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 20px;
}

#inputText {
    width: 80%;
    padding: 10px;
    font-size: 1em;
    border: 2px solid #ccc;
    border-radius: 5px;
    resize: none; /* Evitar que se redimensione el textarea */
}

#convertbutton {
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

#convertbutton:hover {
    background-color: #45a049;
}

#audioPlayer {
    margin-top: 20px;
    width: 80%;
    max-width: 400px;
}


#metadata {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: left;
}

#metadata h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

#metadata p {
    font-size: 1em;
    color: #666;
    margin-bottom: 5px;
}

#metadata strong {
    font-weight: bold;
    color: #333;
}