*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-image: url('./assest/digital-voice.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.9;
    height: 100vh;
    overflow: hidden;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}


h1{
    font-size: 3rem;
    background-color: #fff;
    padding: 1rem;
    border-radius: 9999px;
    text-align: center;
    margin-bottom: 1rem;
}


.languages{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-direction: column;
}

.languages label{
    font-size: 1rem;
    background-color: #fff;
    padding: 0.5rem;
    margin-bottom: 5px;
    border-radius: 10px;

}

.languages select{
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 9999px;
    outline: none;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}

select option{
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 9999px;
    outline: none;
    border: none;
    cursor: pointer;
    
}
button{
    width: 300px;
    height: 50px;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
}
.result{
    width: 600px;
    height: 350px;
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
    overflow: auto;
    margin-block: 1rem;
}
.buttons{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 1rem;
}
.recordBtn{
    border: 2px solid #1d2f4f;
    background-color: #8ca9de;
}
.recordBtn:hover{
    background-color: #12213c;
}
.downloadBtn{
    border: 2px solid #276c36;
    background-color: #084b04;
}
.downloadBtn:hover{
    background-color: #205e2d;
}
.clearBtn{
    border: 2px solid #30837c;
    background-color: #30aca2;
}

.clearBtn:hover{
    background-color: #256e68;
}

