body {
    background-color: rgb(25, 25, 25);
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

textarea {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    padding: 5px;
    transition: all 0.1s;
    font-weight: 800;
    min-width: 100px;
    max-width: 350px;
    min-height: 100px;
    max-height: 400px;
    margin: auto;
}

textarea:focus {
    outline: 2px solid rgb(0, 187, 255);
}

textarea:hover {
    transform: scale(1.02);
}

button {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 28px;
    font-weight: 1000;
    outline: 2px solid rgb(0, 187, 255);
    border: none;
    border-radius: 10px;
    padding: 5px;
    transition: all 0.1s;
}

button:hover {
    transform: scale(1.03);
}

.slider {
    display: flex;
    flex-direction: column;
    width: 200px;
    color: white;
    font-size: 20px;
    text-align: center;
    font-weight: 1000;
}

#main {
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 50px;
    width: 400px;
    gap: 20px;
}

#sliders {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#recognized-text {
    color: white;
    font-size: 28px;
    text-align: center;
    margin: 10px;
}