* {
  box-sizing: border-box;
}

html {
	height: 100%;

}

@font-face {
	font-family: 'Share Tech Mono';
	src: url('./assets/ShareTechMono-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: block;
  }

body {
  	font-family: 'Share Tech Mono';
	background-color: rgba(8, 8, 8, 1);
	color: chartreuse;
	height: 100%;
	margin: 0;
}
.container {
	display: flex;
  	justify-content: center;
	align-items: center;
	width: 100vw;
	max-height: 400px;
}
.chat {
	height: 300px;
	width: 50vw;
	display: flex;
	flex-direction: column;
  	justify-content: center;
	align-items: center;
	font-size: 1.2em;
} 
.past {
	min-height: 80px;
	width: 50vw;
	margin: auto;
}
::-webkit-input-placeholder { 
	color: .711 
}
input { 
	border: 0; 
	padding: 15px;
	width: 50vw; 
	margin-left: auto;
	border-radius: 2px;
	font-family: 'Share Tech Mono';
	font-size: 1.1em;
	color: azure;
	background-color: rgb(37, 77, 0); 
}
input:focus {
	outline: solid 1px rgb(0, 236, 55);
}
.messages {
	display: flex;
	flex-direction: column;
	overflow: scroll;
	height: 90%;
	width: 100%;
	background-color: rgba(8, 8, 8, 1);
	border: dashed  1px chartreuse;
	padding: 15px;
	margin: 15px;
}
#bot {
	margin-left: auto;
	padding: 3px;
}
#user {
	color: rgb(114, 199, 153);
}
.bot {
	font-family: 'Share Tech Mono','Courier New', Menlo, source-code-pro, Monaco,  
	monospace;
}
.avatar {
	height: 25px;
	padding-left: 15px;
}
.avatarH {
	max-height: 80px;
	margin-top: 5px;
	display: flex;
}
.h3 {
	font-family: 'Share Tech Mono';
	font-size: 1.6em;
	font-weight: bold;
	color: chartreuse;
}
.response {
	display: flex;
	align-items: center;
	margin: 1%;
}


/* Mobile */

@media only screen and (max-width: 980px) {
  .container {
		flex-direction: column; 
		justify-content: flex-start;
		display: flex;
		width: 100vw;
		max-height: 400px;
	}
	.chat {
		width: 75vw;
	}
	input { 
		width: 75vw;
		font-size: 0.9em; 
	}
	.past {
		min-height: 60px;
		width: 75vw;
		margin: auto;
	}
	.avatarH {
		max-height: 50px;
		margin-top: 5px;
		display: flex;
	}
	.h3 {
		font-family: 'Share Tech Mono';
		font-size: 1.2em;
		font-weight: bold;
		color: chartreuse;
	}
}