*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    background-color: rgb(94, 71, 188);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
main{
    background-color: rgb(255, 255, 255);
    height: 500px;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0px 0px 60px 5px rgb(94, 71, 188);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}
.title{
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: rgb(48, 48, 48);
}
.text-section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}
.text-title{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: rgb(36, 36, 36);
    align-self:start;
}
#text{
    height: 7rem;
    width: 20rem;
    border: none;
    outline: 2px solid rgba(128, 128, 128, 0.623);
    border-radius: 0.5rem;
    resize: none;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 8px 10px;
}
.voice-section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}
.voice-title{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: rgb(36, 36, 36);
    align-self: start;
}
#voice{
    height: 3rem;
    width: 20rem;
    border: none;
    outline: 2px solid rgba(128, 128, 128, 0.623);
    border-radius: 0.4rem;
    padding: 0px 10px;
}
.submit{
    background-color: rgba(92, 55, 225, 0.979);
    color: white;
    width: 20rem;
    height: 3rem;
    border-radius: 0.3rem;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}
@media(max-width:700px){
    main{
        width: 60vw;
    }
}