body{
    background:#004242;
}


#join-btn{
    position: fixed;
    top:50%;
    left:50%;
    margin-top:-50px;
    margin-left:-100px;
    font-size:18px;
    padding:20px 40px;
}

#video-streams{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    height: 90vh;
    width: 1400px;
    margin:0 auto;
}

.video-container{
    max-height: 100%;
    border: 2px solid black;
    background-color: #808080;
}

.video-player{
    height: 100%;
    width: 100%;
}

#mic-btn{
    border: none;
background: none;
            width: 50px;
            height: 50px;
    cursor: pointer;
}

#camera-btn{
    border: none;
background: none;
            width: 50px;
            height: 50px;
    cursor: pointer;
}

#stream-controls{
    display: none;
    justify-content: center;
    margin-top:0.5em;
}

        #mic-img {
            width: 100%;
            height: 100%;
        }

        #camera-img {
            width: 100%;
            height: 100%;
        }

@media screen and (max-width:1400px){
    #video-streams{
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        width: 95%;
    }
}