* {
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
	padding: 0;
	margin: 0;
}

#notfound {
	position: relative;
	height: 100vh;
}

#notfound .notfound {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.error-caption {
	color: #777777;
	font-size: 14pt;
}

.error-title {
	color: #0275D8;
	font-size: 26pt;
	font-weight: bold;
}

.img-error {
	width: 100%;
}

.notfound {
	width: 100%;
	max-width: 800px;
	line-height: 1.4;
	text-align: center;
}

.notfound .notfound-404 {
	position: relative;
}

.notfound a {
	background: #0275D8;
	color: #FFFFFF;
	border-radius: 10px;
	display: inline-block;
	font-size: 14pt;
	font-weight: 700;
	margin-top: 30px;
	padding: 10px 15px;
	text-decoration: none;
}

.notfound a:hover {
	color: #FFFFFF;
	background: #0225D8;
}