html,
body {
	background-color: #ecf0f1;
	font-family: 'Ruda';
	margin: 0;
}

.message_text_box {
	font-size: 17px;
	line-height: 20px;
	border-radius: 18px;
	padding: 8px 12px;
	display: inline-block;
	margin: 10px 0 50px 0;
	color: #fff;
	background-color: #00B0FF;
	border: none;
	outline: 0;
	float: right;
	margin-left: 50%;
}

.example_chat_message {
	color: #393939;
	font-size: 17px;
	line-height: 20px;
	border-radius: 18px;
	padding: 8px 12px;
	display: inline-block;
	margin: 0 0 6px 0;
	background-color: #E3E2DF;
}

.example_chat_message.me {
	background-color: #00B0FF;
	color: #fff;
}

.example_chat_message.someone-else {
	background-color: #E3E2DF;
	text-align: left;
	
}

.list_of_messages.someone-else div .example_chat_username {
	margin-top: 5px;
	margin-bottom: 2px;
	color: #333;
	font-size: 12px;
	margin-left: 5px;
}
.list_of_messages.me div .example_chat_username {
	margin-top: 5px;
	margin-bottom: 2px;
	color: #333;
	font-size: 12px;
	text-align: right;
	margin-right: 5px;
}

.list_of_messages.someone-else div {
	display: inline-block;
	margin: 0 0 6px 0;
    float: left;
    width: 70%;
    text-align: left;
}

.list_of_messages.me div {
	display: inline-block;
    margin: 0 0 6px 0;
    float: right;
    width: 70%;
    text-align: right;
}

.list_of_messages div p {
	text-align: left;
}

/* do not group these rules */
.message_text_box::-webkit-input-placeholder {
	color: #fff;
}
.message_text_box:-moz-placeholder {
	/* FF 4-18 */
	color: #fff;
}
.message_text_box::-moz-placeholder {
	/* FF 19+ */
	color: #fff;
}
.message_text_box:-ms-input-placeholder {
	/* IE 10+ */
	color: #fff;
}

input.message_text_box:focus {
	outline-width: 0;
}

li {
	list-style-type: none;
}

.example_messages,
.username,
.radius {
	padding: 0;
	margin: 0 auto;
	width: 60%;
}

.message_input_center_div_center {
	text-align: right;
}

.example-chat {
	margin-top: 100px;
}

.example-chat_two {
	margin-top: 50px;
}
.center_div {
	text-align: center;
	font-size: 70px;
	font-family: 'Roboto Condensed', sans-serif;
	margin: 0;
	color: #494949;
}
.center_div_two {
	text-align: center;
	font-size: 50px;
	font-family: 'Roboto Condensed', sans-serif;
	margin: 0;
	color: #494949;
	margin-bottom: 25px;
}

.center_second_title {
	text-align: center;
	font-size: 40px;
	font-family: 'Roboto Condensed', sans-serif;
	margin: 0;
	color: #494949;
}

.username{
	display: inline-block;
	width: 100%;
	text-align: center;
	margin-top: 75px;
}

.radius {
	display: inline-block;
	width: 100%;
	text-align: center;
	margin-top: 25px;
}

.username_text_box,
.radius_text_box {
	border: 1px solid #dadada;
	font-size: 17px;
	color: #878889;
	vertical-align: middle;
	width: 200px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	outline: medium none;
	box-shadow: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
    display: inline-block;
    height: 30px;
    background: #fff;
    vertical-align: bottom;
    padding: 5px 0 2px 10px;
}
.nameInput {
	display: inline;
	font-size: 25px;
}

.developed_by {
	text-align: center;
	font-size: 18px;
	margin-top: 100px;
	width: 100%;
}

@media screen and (max-width: 1000px) {
	.example_messages {
		width: 70%;
	}
}

@media screen and (max-width: 800px) {
	.example_messages {
		width: 80%;
	}
	.list_of_messages.someone-else div {
		margin-right: 30%;
	}

	.list_of_messages.me div {
		margin-left: 30%;
	}
}

@media screen and (max-width: 700px) {
	.example_messages {
		width: 85%;
	}
}

@media screen and (max-width: 525px) {
	.example_messages {
		width: 95%;
	}
	.center_div_two {
		font-size: 40px;
		margin-bottom: 15px;
	}
	.example-chat_two {
		margin-top: 25px;
	}
}
