﻿* {	
	-webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
	background: #fff;
    font-family: 'Roboto', sans-serif;
	color: #697989;
	padding: 0;
	margin: 0;
}

#notfound {
	position: relative;
	height: 100vh;
}

#notfound .notfound {
	position: absolute;
	left: 50%;
	top: 40%;
	-webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.notfound {
	max-width: 767px;
	width: 100%;
	line-height: 1.2;
	text-align: center;
	padding: 15px;
}

.notfound .notfound-404 {
	position: relative;
	height: 220px;
}

.notfound .notfound-404 h1 {  
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
	font-size: 165px;
	font-weight: 200;
	margin: 0px;
	background: #2b4368;
	color:transparent;
	-webkit-background-clip: text;
	background-clip: text;
	text-transform: uppercase;
}

.notfound h2 {  
	font-size: 30px;
	font-weight: 200;
	text-transform: uppercase;
	margin-top: 0px;
	margin-bottom: 25px;
	letter-spacing: 3px;
}


.notfound p {  
	font-size: 18px;
	font-weight: 200;
	margin-top: 0px;
	margin-bottom: 25px;
}


.notfound a {
	background: #2b4368;
}


@media only screen and (max-width: 480px) {
  .notfound .notfound-404 {
	position: relative;
    height: 168px;
  }

  .notfound .notfound-404 h1 {
    font-size: 142px;
  }

  .notfound h2 {
    font-size: 22px;
  }
  
  .notfound p {
	  font-size: 16px;
  }
}
