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

.ttsContainer {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}

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

textarea {
    width: 95%;
    height: 150px;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: none;
}

select,
input[type="range"] {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
    height: 40px;
}

#button {
    background-color: dodgerblue;
    color: white;
    padding: 10px 20px;
    border: none;
}

#button:hover {
    background-color: darkblue;
}

label {
    display: inline-block;
    margin-top: 5px;
    font-weight: bold;
}
