body {
  font-family: sans-serif;
}

#videos{
	width: 100%;
	overflow: hidden;
}

video {
	max-width: 100%;
	width: 320px;
	height: 240px;
	-webkit-transform: scaleX(-1); 
	transform: scaleX(-1);
	background-color: black;
}

.video-container{
	float: left;
	margin: 10px;
	background-color: #EEEEEE;
	padding: 10px;
}

.video-container h3{
	text-align: center;
}

.chat-container{
	float: left;
	margin: 10px;
	background-color: #EEEEEE;
	padding: 10px;
	width: 320px;
}

.chat-container h3{
	text-align: center;
}

#messages{
	background-color: white;
	overflow: scroll-x;
	height: 200px;
	text-align: left;
	padding-left: 5px;
	padding-right: 5px;
}

.send-message-container input{
	width: 75%;
	font-size: 1.3em;
	margin-top: 13px;
}

.send-message-container button{
	width: 20%;
}

button{
	font-size: 20px;
}