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

.conversor {
    background-color: #f4feffda;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 500px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

textarea {
    width: 90%;
    height: 100px;
    padding: 10px;
    margin: 10px 20px;
    border: 1px solid #ccc;
    border-radius:10px;
}

.botoes {
    display: flex;
    justify-content: space-between;
}

button {
    background-color: #b849e8;
    margin-bottom: 10px;
    color: #fff;
    border: none;
    padding: 10px 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 32%;
}

button:hover {
    background-color: #8f29ba;
}

#resultado {
    margin-top: 20px;
    font-size: 18px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-conteudo {
    background-color: #e1e8e7;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
}

.fechar {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.fechar:hover,
.fechar:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}