div.chat {
	display: flex;
	flex-direction: column;

	padding: 0 25px;
}

div.chatmessage div.content {
	max-width: 350px;
	padding: 5px;
	border-radius: 5px;
}

div.chatmessage:nth-child(odd) div.content {
	background-color: #44403B;
}

div.chatmessage:nth-child(even) div.content {
	background-color: blueviolet;
	float: right;
}