body{
	background-image: url("/imgs/background.jpg");
	background-attachment: fixed;
	background-repeat: repeat;
	background-size: 100%;
	color: white;
}

.title{
	font-size: 30px;
}

.msgBot{
	background-color: white;
	border-radius: 15px;
	font-size: 15px;
	color: black;
	text-align: justify;
	box-shadow: 0px 0px 8px grey;
	padding: 10px 10px 10px 10px;
	margin: 0px 10px 0px 10px;
}

.msgUsr{
	background-color: rgba(0, 110, 207, 20%);
	border-radius: 15px;
	font-size: 15px;
	color: white;
	text-align: right;
	box-shadow: 0px 0px 8px grey;
	padding: 10px 10px 10px 10px;
	text-shadow: 0px 0px 2px black;
	margin: 0px 10px 0px 10px;
}

.chatBox{
	background-color: rgba(0, 110, 207, 20%);
	border-radius: 30px;
	border-color: transparent;
	color: white;
	width: 100%;
	padding: 10px 10px 10px 10px;
	box-shadow: 0px 0px 10px grey;
}

.chatBox:focus{
	outline: none;
	background-color: background-color: rgba(0, 110, 207, 50%);
}

.sendBtn{
	outline: none;
	border-width: 0px;
	background-color: transparent;
	color: white;
	padding: 6px 2px 2px 8px;
}

.copyBtn{
	border-radius: 15px;
	background-color: #2b2b2a;
	color: white;
	padding: 10px 10px 5px 10px;
}

.fixed-bottom{
	background-color: rgba(0, 0, 0, 100%);
	padding-top: 10px;
}

.tutorialLink{
    filter: drop-shadow(5px 2px 5px black);
}