#stream-wrapper{
    background-color: #0077F5;
    padding: 20px;
    display: none;
}

#join-btn{
    position: relative;
    left:44%;
    font-size:18px;
    padding:20px 40px;
    cursor: pointer;
    background-color: #0077F5;
    color: white;
    border: none;
    outline: none;
    border-radius: 30px;
}

#video-streams{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    height: 1vh;
    width: 1400px;
    margin:0 auto;
}

.video-container{
    max-height: 100%;
    border: 2px solid #0077F5;
}

.video-player{
    height: 100%;
    width: 100%;
}

.fa, .fa-solid {
    font-size: 32px!important;
    padding: 10px 20px;
    cursor: pointer;
    color: white;
}

#leave-btn{
    background-color: #EE4B2B;
    color: #fff;
}

#stream-controls{
    display: none;
    justify-content: center;
    margin-top:0.5em;
}

@media screen and (max-width:1400px){
    #video-streams{
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        width: 95%;
    }
}