@charset "UTF-8";


@font-face {
	font-family: 'Larss';
	font-display: auto;
	font-weight: 400;
	src: url('php-fonts/larss/Larsseit.ttf');
	src: url('php-fonts/larss/Larsseit.woff2') format('woff2'),
		 url('php-fonts/larss/Larsseit.woff') format('woff'),
		 url('php-fonts/larss/Larsseit.ttf') format('truetype');
}

@font-face {
	font-family: 'Larss';
	font-display: auto;
	font-weight: 700;
	src: url('php-fonts/larss/Larsseit-Bold.ttf');
	src: url('php-fonts/larss/Larsseit-Bold.woff2') format('woff2'),
		 url('php-fonts/larss/Larsseit-Bold.woff') format('woff'),
		 url('php-fonts/larss/Larsseit-Bold.ttf') format('truetype');
}


*::selection{ background: #000; color: #FFF; }
*::-moz-selection{ background: #000; color: #FFF; }



/*---------------------------------------*/

html {
	height: 100%;
}

body {
	height: 100%;
	font: 400 13px/1.6em 'Larss', Helvetica, sans-serif;
	letter-spacing: 0;
	color: #000;
	margin: 0;
	padding: 0px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #999;

}
body *{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*---------------------------------------*/

a {
	color: #000;
	text-decoration: none;
	transition: all 0.25s ease;
	cursor: pointer;
}
a:hover{color:#FFF;}


/*---------------------------------------*/

#error {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
#number {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 9vmax;
	line-height: 0.85em;
	font-weight: 700;
	letter-spacing: -0.03em;
}
#title {
	width: 80%;
	max-width: 460px;
	position: absolute;
	bottom: 10%;
	padding-bottom: 2.4em;
	left: 50%;
	transform: translateX(-50%);
}
#title h1{
	display: inline-block;
	font-size: inherit;
	font-weight: 700;
	margin: 0 5px 0 0;

}
#title a{
	display: block;
	clear: both;
	position: absolute;
	padding-left: 30px;
	width: auto;
	min-height: 25px;
	padding-top: 5px;
	padding-bottom: 5px;
	white-space:nowrap;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
#title a .i{
	display: block;
	width: 30px;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	height: 10px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -9px;
	transition: all 0.3s ease;
}
#title a .i:after{
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-left: 2px solid #000;
	border-bottom: 2px solid #000;
	position: absolute;
	left: 0;
	top: 5px;
	transform: rotate(45deg);
	transition: all 0.3s ease;
}
#title a:hover .i { border-color: #FFF; width: 40px; left: -10px;}
#title a:hover .i:after {border-color: #FFF;}
#logo {
	width: 60px;
	position: absolute;
	top: 10%;
	left: 50%;
	margin-left: -30px;
}
