body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
}

.main {
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	/* display: flex; */
}

.main__left {
	/* flex: 0.8; */
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 50vh;
}

.main__right {
	/* flex: 0.2; */
	display: flex;
	flex-direction: column;
	background-color: #242324;
	width: 100%;
	height: 50vh;
}

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

.main__controls {
	display: flex;
	justify-content: space-between;
	background-color: #1c1e21;
	color: #d2d2d2;
	padding: 5px;
	text-transform: capitalize;
}

.main__controls__block {
	display: flex;
}

.main__controls__button {
	font-size: 0.6rem;
}

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

.main__controls__button i {
	font-size: 12px;
}

.main__header {
	color: #f5f5f5;
	text-align: center;
}

.main__chat_window {
	flex-grow: 1;
	overflow: scroll;
}

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

.main__message_container input {
	flex-grow: 1;
	background-color: transparent;
	border: none;
	color: #f5f5f5;
}
#video-grid {
	display: flex;
	justify-content: center;
}

.leave__meeting {
	color: #eb534b;
}

.unmute,
.stop {
	color: #cc3b33;
}

video {
	height: 300px;
	width: 400px;
	object-fit: cover;
}

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

@media screen and (min-width: 360px) {
	.main {
		display: flex;
		/* flex-direction: column; */
		width: 100vw;
	}

	.main__left {
		width: 100vw;
		/* height: 50vh; */
		flex: 1;
		display: flex;
		flex-direction: column;
	}

	.main__right {
		width: 100vw;
		/* height: 50vh; */
		flex: 1;
		display: flex;
		flex-direction: column;
	}

	video {
		width: 360px;
		height: 100%;
	}

	.main__controls__button {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 4px 2px;
		min-width: 20px;
		font-size: 0.6rem;
		cursor: pointer;
	}
}

@media screen and (min-width: 768px) {
	.main {
		height: 100vh;
		display: flex;
		flex-direction: row;
	}

	.main__left {
		flex: 0.8;
		display: flex;
		flex-direction: column;
		height: 100vh;
	}

	.main__right {
		flex: 0.2;
		display: flex;
		flex-direction: column;
		background-color: #242324;
		height: 100vh;
	}

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

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