*,*:after,*:before {

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: arial;
    font-size: 16px;
    margin: 0;
    background:linear-gradient(to right bottom,#d13cff,#031f6a);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #000;
}

.voice_to_text {
    width: 1000px;
    text-align: center;
}

#convert_text {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    resize: none;
    padding: 10px;
    font-size: 20px;
    margin-bottom: 20px;
}

h1 {
    font-size: 80px;
    color: #fff;
}

button {
    width: 200px;
    height: 50px;
    padding: 12px 20px;
    background: #0ea4da;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-size: large;

}
.para{
    font-size: large;
}
footer{
    /* position:absolute;
    bottom: 0; */
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;

}
@media only screen and (max-width: 480px)
{
    h1 {
        font-size: 50px;
        color: #fff;
    }
    #convert_text {
        width:90%;
    }
}