@charset "UTF-8";
body{
	text-align:center;
}

#header{
	height:100px;
	display:flex;
	align-items:center;
	justify-content: space-between;
	gap: 15px;
}
#right{
	display: flex;
	gap: 20px;
}
#welcome{
	height:300PX;
	display:flex;
	justify-content:center;
	align-items:center;
	background: linear-gradient(to right, orange, pink);
	
}
h2{
	font-family: "Hannari";
}
#messages{
	height:800px; 
	overflow-y:auto; 
	border:1px solid #ccc;
}
#message{
	width:90%;
	height:150px;
	margin:20px 0 0 0;
	resize:none;
}

#sendButton{
	width:50px;
	height:40px;
	border-radius: 8px;
	border: 1px solid #3e8e41;
	font-weight:bold;
}