

#errorBox{
	margin:50px auto;
	text-align: center;
}

.errorTitle{
	font-family: 'Pinyon Script', cursive;
	margin-bottom: 30px;
	text-align: center;
	font-size: 60px;
}

.errorDesc{
	margin-bottom: 30px;
	text-align: center;
}

.errorBtn{
	display: block;
	position: relative;
	width: 50%;
	height: auto; 
	margin:10px auto 0;
	padding: 20px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background: #4faae8;
	background: -moz-linear-gradient(top,  #4faae8 0%, #368fc9 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4faae8), color-stop(100%,#368fc9));
	background: -webkit-linear-gradient(top,  #4faae8 0%,#368fc9 100%);
	background: -o-linear-gradient(top,  #4faae8 0%,#368fc9 100%);
	background: -ms-linear-gradient(top,  #4faae8 0%,#368fc9 100%);
	background: linear-gradient(to bottom,  #4faae8 0%,#368fc9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4faae8', endColorstr='#368fc9',GradientType=0 );
	-webkit-box-shadow:rgba(0, 0, 0, 0.1) 1px 1px 1px 1px;
	-moz-box-shadow:rgba(0, 0, 0, 0.1) 1px 1px 1px 1px;
	box-shadow:rgba(0, 0, 0, 0.1) 1px 1px 1px 1px;
	border: 1px solid #368fc9;
	text-align: center;
	color:#ffffff !important;
	font-weight: bold;
	font-size: 1.6rem;
}

.errorBtn:hover{
	opacity: 0.7;
}

@media screen and (max-width:479px){
	.errorTitle{
		font-size: 39px;
	}
	.errorBtn{
		width: 70%;
	}
}