body{
	/*background:#F4EBC3;*/
	background: rgb(244,235,195);
	background: linear-gradient(90deg, rgba(244,235,195,1) 30%, rgba(212,203,161,1) 80%);
	font-family: 'Open Sans', sans-serif;
}
.container{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/*hr {
	border:1px dashed #C5CEAE;
	border-top:1px dashed #F0E2A4;
}*/
.title{
	font-weight:800;
	color:#AB526B;
	/*letter-spacing:3px;*/
	/*text-transform: uppercase;*/
}
hr {
	border:1px dashed #C5CEAE;
	border-top:1px dashed #F0E2A4;
}

@media (max-width:991px){
	body{
		font-size:40px;
	}
	/*.title{
		font-size:60px;
	}*/
}

.loading:after{
	content: '.';
	animation: dots 1s steps(5, end) infinite;
}
@keyframes dots{
	0%, 20%{
		color:#000000;
		text-shadow:
			.25em 0 0 rgba(0,0,0,0),
			.5em 0 0 rgba(0,0,0,0);
	}
	40%{
		color:#000000;
		text-shadow:
			.25em 0 0 rgba(0,0,0,0),
			.5em 0 0 rgba(0,0,0,0);
	}
	60%{
		text-shadow:
		.25em 0 0 #000000,
		.5em 0 0 rgba(0,0,0,0);
	}
	80%, 100%{
		text-shadow:
		.25em 0 0 #000000,
		.5em 0 0 #000000;
	}
}