body{
    background:#0699ee;
    background-color: rgb(23, 22, 22);
}

#join-btn{
    font-family: poppins;
    font-size: 5em;
    position: fixed;
    top:50%;
    left:50%;
    margin-top:-50px;
    margin-left:-100px;
    font-size:18px;
    padding:20px 40px;
    color: black;
    background-color: white;
    border-radius: 32px;
}

#join-btn:hover {
    color: red;
}

#join-btn:active {
    color: white;
    background-color: grey;
}

#video-streams{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    height: 90vh;
    width: 1400px;
    margin:0 auto;
    padding-top: 16px;
}

.video-container{
    max-height: 100%;
    border: 2px solid black;
    background-color: #0699ee;
}

.video-player{
    height: 100%;
    width: 100%;
}

button{
    border:none;
    background-color: white;
    color: black;
    padding:10px 20px;
    font-size:16px;
    margin:2px;
    cursor: pointer;
    border-radius: 30px;
}

#stream-controls{
    display: none;
    justify-content: center;
    margin-top: 0.5em;
    color: black;
}

@media screen and (max-width:1400px){
    #video-streams{
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        width: 95%;
    }
}