*{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
.mic-button{
    display: none;
    position: relative;
    right : 12px;
    font-size: 1em;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 10px;
    
}

body.dark-mode .mic-button{
    /* padding: 15px; */
    border-radius: 100%;
    /* background-color: white !important; */
}
body.dark-mode .fa-microphone{
    color: white;
}

.show{
    display: inline-block;
}
.mic-button :hover{
    /* background-color: rgb(219, 214, 214); */
    border-radius: 100%;
    /* padding: 15px; */
    /* height: 10px; */
    /* width: 10px; */
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;

}
#animated-voice{
    display: none;
}
.listening{
    background-color: rgb(8, 8, 8);
    padding: 20px;
    border-radius: 100%;
    height: 10px;
    width: 10px;
    
}
.listening >i{
    display: none;
}
.listening #animated-voice{
    display: block;
    position: relative;
    right: 9.5px;
    bottom: 7px;
    font-size: 1.25em;

}
