.pagenotfound-text>h1 {
	color:#fff;
	font-family: "proxima nova","Roboto","helvetica",Arial,sans-serif;
	-webkit-background-clip: text;
	font-size: 30px;
	text-align: center;
	display: block;
	font-weight: bold;
	letter-spacing: -2px;
	line-height: 50px;
}
.fullScreen {
	height: 100vh;
}
img.rotating {
	width: 250px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -125px;
	margin-top: -200px;

	-webkit-transition: opacity 2s ease-in;
	-moz-transition: opacity 2s ease-in;
	-o-transition: opacity 2s ease-in;
	-ms-transition: opacity 2s ease-in;
	transition: opacity 2s ease-in;
}
@-webkit-keyframes rotating {
	from{
		-webkit-transform: rotate(0deg);
	}
	to{
		-webkit-transform: rotate(360deg);
	}
}

@-moz-keyframes rotating {
	from{
		-moz-transform: rotate(0deg);
	}
	to{
		-moz-transform: rotate(360deg);
	}
}

@-o-keyframes rotating {
	from{
		-o-transform: rotate(0deg);
	}
	to{
		-o-transform: rotate(360deg);
	}
}

@-ms-keyframes rotating {
	from{
		-ms-transform: rotate(0deg);
	}
	to{
		-ms-transform: rotate(360deg);
	}
}
.rotating {
	-webkit-animation: rotating 120s linear infinite;
	-moz-animation: rotating 120s linear infinite;
}

div.pagenotfound-text {
	width: 100%;
	position: absolute;
	top: 50%;
	margin-top: 100px;
	left: 0px;
	text-align: center;
}
.pagenotfound-text>a{
	color: #a3a3a3;
	position: relative;
}
.pagenotfound-text>a:before{
	border-bottom: 1px solid #a3a3a3;
	width: 30px;
	content: '';
	position: absolute;
	left: -40px;
	top: 10px;
}
.pagenotfound-text>a:after{
	border-bottom: 1px solid #a3a3a3;
	width: 30px;
	content: '';
	position: absolute;
	left:100%;
	margin-left: 10px;
	bottom: auto;
	top: 10px;
}