@charset "utf-8";
/* CSS Document */


body, html {
	height: 100%;
	font-family: 'Quicksand', sans-serif;
	font-size: 18px;
	color: #4a3e5f;
	text-align: center;
}
.bg {
	background-image: url("../bg.jpg");	
	min-height: 100%;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: scroll;
}
.box {
	height: 80%;
	background-color: rgba(248,247,242,0.70);
	margin: 12% 2% 5%;
	padding: 20px;
	-webkit-box-shadow: inset 10px 10px 20px 0 rgba(0,0,0,0.1), 0px 0px 20px 0 rgba(0,0,0,0.2);
	box-shadow: inset 10px 10px 20px 0 rgba(0,0,0,0.1), 0px 0px 20px 0 rgba(0,0,0,0.2);
}
.box .inner {
	border: 2px rgba(156,132,201,0.50) solid;
	padding: 20px;
}
h1 {
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 2.5rem;	
}
@media (max-width: 580px){
	h1 {
	font-size: 36px;	
}
}
h2 {
	font-size: 1.5rem;
	font-weight: 300;
}
p {
	font-size: 1rem;
	font-weight: 400;
}
.small {
	font-size: 0.773rem;
}
a {
	color: #775fa2;
	-webkit-transition: all 260ms ease-in-out;
	-moz-transition: all 260ms ease-in-out;
	-ms-transition: all 260ms ease-in-out;
	-o-transition: all 260ms ease-in-out;
	transition: all 260ms ease-in-out;
}
.btn {
	/*border-radius: 30px;*/
	padding: 10px 20px;
	text-align: center;
	display: inline-block;
	margin: 30px auto;
	white-space: nowrap;
	text-transform: uppercase;
	color: #4a3e5f;	
	font-weight: 700;
}
.btn-bg {
	border: 2px rgba(74,62,95,0.50) solid;
	background-color: rgba(255,255,255,0.7);
	color: #4a3e5f;
}
.btn-bg:hover {
	border: 2px rgba(255,255,255,0.00) solid;
	background-color: #4a3e5f;
	color: #fff;
	-webkit-transition: all 260ms ease-in-out;
	-moz-transition: all 260ms ease-in-out;
	-ms-transition: all 260ms ease-in-out;
	-o-transition: all 260ms ease-in-out;
	transition: all 260ms ease-in-out;
}
