.mic-button {
    width: 7vw;
    height: 7vw;
    max-width: 65px;
    max-height: 65px;
    border-radius: 50%;
    background-color: rgb(87, 0, 128);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin-top: 5vh;
    left: 40%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mic-button i {
    color: white;
    font-size: 5vw;
}

.mic-button.muted {
    background-color: #8b008b;
}


.deafenbutton {
    width: 7vw;
    height: 7vw;
    max-width: 65px;
    max-height: 65px;
    border-radius: 50%;
    background-color: rgb(87, 0, 128);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin-top: 5vh;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.deafenbutton i {
    color: white;
    font-size: 5vw;
}


.deafenbutton.muted {
    background-color: #8b008b;
}

.joinButton {
    width: 7vw;
    height: 7vw;
    max-width: 65px;
    max-height: 65px;
    border-radius: 50%;
    background-color: rgb(87, 0, 128);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin-top: 5vh;
    left: 60%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.joinButton i {
    color: white;
    font-size: 5vw;
}

.joinButton.muted {
    background-color: #8b008b;
}



@media (min-width: 1024px) { 
    .deafenbutton i {
        font-size: 50px;
    }
    .mic-button i {
        font-size: 50px;
    }
    .joinButton i {
        font-size: 50px;
    }
}
