body{
    margin:0;
    padding: 0;
}
#video-grid{
    display: flex;
    justify-content: center;
}

video{
    height: 30%;
    width: 40%;
    object-fit: cover;
}

.main{
    height: 100vh;
    display: flex;
}

.main_left{
    flex:0.8;
}

.main_right{
    flex:0.2;
}

.main_videos{
    flex-grow: 1;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_controls{
    display: flex;
    background-color: #1C1E20;
    color: #d2d2d2;
    padding:5px;
    justify-content: space-between;
}

.main_controls_block{
    display: flex;
}

.main_controls_button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 10px;
    min-width: 80px;
    cursor: pointer;
}

.main_controls_button i{
    font-size: 24px;
}

.main__controls__button:hover {
    background-color: #343434;
    border-radius: 5px;
}

.leave_meeting{
    color:#EB534B;
}

.main_right{
    display: flex;
    flex-direction: column;
    background-color: #242324;
    border-left: solid #3D3D42;
}

.main_header{
    color: #F5F5F5;
    text-align: center;
}

.main_chat_window{
    flex-grow: 1;
    overflow-y: scroll;
}

.main_message_container{
    padding:22px 12px;
    display: flex;
}

.main_message_container input{
    flex-grow: 1;
    background-color: transparent;
    border:none;
    color: #F5F5F5;
}

.messages{
    color:white;
    list-style: none;
}







#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
  }
  
  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }