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

body {
	padding: 0;
	margin: 0;
}

#notfound {
	display: block;
	position: absolute;
	max-height: 100%;
	min-height: 100%;
	max-width: 100%;
	min-width: 100%;
	padding: 0;
	margin: 0;
	top: 0;
	left: 0;
}

#notfound .notfound {
	display: inline-grid;
	position: absolute;
	justify-items: center;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 1vh;
	align-content: center;
	max-height: 100%;
	min-height: 100%;
	max-width: 100%;
	min-width: 100%;
}

.notfound .notfound-404 {
	display: inline-block;
	position: relative;
	align-self: end;
	padding: 0;
	margin: 0;
}

.notfound .notfound-text {
	display: inline-block;
	position: relative;
	align-self: start;
	padding: 0;
	margin: 0;
	text-align: center;
}


.notfound .notfound-404 h1 {
	position: absolute;
	font-size: 20vw;
	margin: 0;
	padding: 0;
	font-weight: 900;
	-webkit-transform: translate(-50%, -100%);
	-ms-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	background: url('../images/bg.jpg') no-repeat;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: cover;
	background-position: center;
}

.notfound .notfound-text h2 {
  color: var(--page-text);
  font-size: 6vw;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
}

.notfound .notfound-text p {
  color: var(--page-text);
  font-size: 3vw;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 0px;
}

.notfound .notfound-text a {
  font-size: 3vw;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 40px;
  font-weight: 700;
}







@media (min-width: 992px) {
	.notfound .notfound-404 h1 {
		font-size: 16vw;
	}

	.notfound .notfound-text h2 {
	  font-size: 3vw;
	}

	.notfound .notfound-text p {
	  font-size: 1.5vw;
	}

	.notfound .notfound-text a {
	  font-size: 1.5vw;
	}

}
