*{
    padding: 0;
    margin: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    box-sizing: border-box;

}

.container {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(90deg, #13b484 0%, #49c7a1 35%, #639788 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    gap: 20px;
}

.container h1 {
    font-size: 42px;
    font-weight: bold;
}

.container h1 span {
color: blue;
}

#entrada-de-conteudo {
    display: flex;
    width: 80%;
    gap: 20px;
    align-items: center;
   
}

#entrada-de-conteudo textarea {
    width: 60%;
    height: 150px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    padding: 15px;
}


input[type="file"] {
    display: none;
}

.acoes {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 80%;
}

.acao-box {
    padding: 15px;
    gap: 15px;
    flex: 1;
}



.acoes select,
.acoes button,
#arquivo-label {
    margin: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    width: 50%;
    font-weight: bold ;
    cursor: pointer;
}

#selecao-voz {
    width: 100%;
}

.acoes button {
    background-color: rgb(24, 24, 185);
    color:#fff;
    
    transition: 0.3s;

}

#arquivo-label {
    font-size: 20px;
    padding: 15px;
    background-color: rgb(24, 24, 185);
}

.acoes button:hover,
#arquivo-label:hover {
    background-color: rgb(92, 92, 173);
}
