body {
	background-color: #222;
	margin: 0;
}

#MainFrame, #ChatFrame {
	background-color: #555;
	margin: auto;
	width: 60vw;
	height: 100dvh;
	position: relative;
}

#MessagesBox {
	display: flex;
	flex-direction: column-reverse;
	overflow: auto;
	scrollbar-width: none;
	width: 100%;
	height: 90%;
}

#MsgInputBox {
	background-color: #777;
	color: #f78231;
	width: 100%;
	height: 4%;
	box-sizing: border-box;
	position: absolute;
	bottom: 0;
	font-size: 1.5em;
}

.Message, .MyMessage {
	background-color: #00f;
	color: #fff;
	font-size: 20px;
	font-family: "Consolas";
	width: 50%;
	overflow-wrap: break-word;
	margin: 0.5%;
}

.MyMessage {
	margin-left: auto;
}

@media (max-aspect-ratio: 4/3){
	#MainFrame, #ChatFrame {
		width: 100vw;
	}
}
