body{
	overflow: hidden;
}
*{
	padding: 0;
	margin: 0;
	font-family: 'Raleway';
}
.container{
	width: 100%;
	min-height: max-content;
	height: 100vh;
	background-color: #e6e6e6;
	background-image: linear-gradient(to right, rgb(211, 255, 255), rgb(165, 255, 255));
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.user, .bot{
	padding: 50px;
	font-size: 220%;
	display: flex;
	min-width: 60%;
	justify-content: flex-start;
}
.user{
	margin-bottom: -120px;
}
.bot{
	justify-content: flex-end;
}
.user i{
	font-size: 60px;
	color: rgba(255, 0, 0, 0.35);
	margin-left: 0px;
	margin-right: 10px;
}
.bot i{
	font-size: 60px;
	color: rgba(255, 0, 0, 0.35);
	margin-left: 10px;
	margin-right: 0px;
}
.respons{
	padding: 10px;
	background-color: #dbc4c4;
	border-radius: 20px 3px 20px 20px;
	height: max-content;
	width: max-content;
	color: #000000;
	animation: none;
}
@keyframes reply{
	0%{transform: translateX(30px); opacity: 0}
	15%{transform: translateX(15px); opacity: 0.5}
	30%{transform: translateX(0px); opacity: 1}
	40%{transform: translateX(-5px); opacity: 1}
	50%{transform: translateX(-8px); opacity: 1}
	60%{transform: translateX(-10px); opacity: 1}
	70%{transform: translateX(-11px); opacity: 1}
	80%{transform: translateX(-11px); opacity: 1}
	100%{transform: translateX(0px); opacity: 1}
}
.ask{
	padding: 10px;
	background-color: rgba(255, 0, 0, 0.5);
	border-radius: 3px 20px 20px 20px;
	height: max-content;
	width: max-content;
	color: #ffffff;
	animation: none;
}
@keyframes asks{
	0%{transform: translateX(-30px); opacity: 0}
	15%{transform: translateX(-15px); opacity: 0.5}
	30%{transform: translateX(-0px); opacity: 1}
	40%{transform: translateX(5px); opacity: 1}
	50%{transform: translateX(8px); opacity: 1}
	60%{transform: translateX(10px); opacity: 1}
	70%{transform: translateX(11px); opacity: 1}
	80%{transform: translateX(11px); opacity: 1}
	100%{transform: translateX(0px); opacity: 1}
}
.type{
	min-height: 50px;
	background-color: rgb(255, 0, 0);
	bottom: 0;
	position: sticky;
	text-align: right;
	padding: 10px;
}
.type input{
	font-size: 30px;
	padding: 5px;
	width: 75%;
	min-width: 357px;
	outline: none;
	border: none;
	border-radius: 5px 5px 5px 5px;
	padding-left: 20px;
	padding-right: 20px;
	transition: 0.15s;
	box-shadow: inset -0.5px 0.5px 2.5px rgba(0, 0, 0, 0.75);
	background-color: rgb(209, 253, 253);
}
.type input:hover{
	box-shadow: none;
	transition: 0.5s;
}
.type input:focus{
	border-radius: 20px 3px 20px 20px;
}
.type button{
	background-color: transparent;
	border: none;
	margin-left: 10px;
	margin-right: 15px;
	font-size: 35px;
	color: rgb(255, 248, 219);
	text-shadow: -1px 1px 10px rgb(50, 50, 50);
	transition: 0.005s;
}
.type button:hover{
	color: rgb(182, 211, 255);
	transition: 0.5s;
	text-shadow: -0.5px 0.5px 5px rgba(50, 50, 50);
}
.type button:active{
	text-shadow: none;
}
#rickroll {
	color: rgb(255, 0, 0);
	text-decoration: none;
}
@media (max-width: 890px){
	[class*="container"]{
		justify-content: space-around;
	}
}
@media (min-height: 900px){
	body{
		overflow: hidden;
	}
	[class*="container"]{
		justify-content: center;
	}
	[class*="user"]{
		font-size: 350%;
		min-width: 65%;
		max-height: 20%;
		margin-bottom: -160px;
		justify-content: flex-start;
	}
	[class*="bot"]{
		font-size: 350%;
		min-width: 65%;
		max-height: 20%;
		justify-content: flex-end;
	}
}
