*
{
	margin:0;
	padding:0;
	font-family: 'Open Sans',sans-serif;
	box-sizing: border-box;
}
body
{
	background:#ffebee;
	z-index: -10;
}
.chatbox
{
	width:500px;
	min-width: 390px;
	height: 400px;
	background:#fff;
	padding: 25px;
	margin:60px auto;
	box-shadow: 3px 3px #ccc;
  z-index=-1;

}
.chatlogs
{
	padding:10px;
	width:100%;
	height:450px;

}
.chat
{
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	margin-bottom: 40px;
}
.chat .user-photo
{
	width: 60px;
	height: 60px;
	background: #ccc;
	border-radius:50%;

}
.chat .chat-message
{
	width:80%;
	padding: 15px;
	margin:5px 10px 0;
	border-radius: 10px;
	color:#fff;
	font-size: 18px;
}
.user .chat-message
{
	background: #ffb6c1;
}
.bot .chat-message
{
	background:#b6ffd0;
	order:-1;
}
.chat-form
{
	margin-top: 100px;
	margin-left: 40px;
	display: flex;
	align-items: flex-start;
}
.chat-form input
{
	background: #fbfbfb;
	width:80%;
	height:55px;
	border:2px solid grey;
	border-radius: 5px;
	padding:10px;
	font-size: 18px;
	color: red;
}
.head
{
	background-color: #343148;
	color:white;
	width: 100%;
	height: 80px;
	font-size: 50px;
	padding: 10px;


}
.head p
{
	text-align: center;
	margin-left: 0px;
	text-transform: capitalize;
	
}