* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	width: 100%;
	overflow: hidden;
	font-family: helvetica, arial, sans-serif;
}

h1 {
	font-size: 2.5em;
	margin-bottom: 2rem;
	color: rgba(0, 0, 0, 0.75);
}

h3 {
	font-size: 1.2em;
	color: rgba(0, 0, 0, 0.5);
	line-height: 180%;
}

h3 a {
	color: #259fc4;
}

.sky {
	background: #AACCF1;
	width: 100%;
	height: 60%;
	position: relative;
}

.cloud {
	fill: white;
	position: absolute;
	z-index: 0;
}

.first-cloud {
	top: 10%;
	left: 5%;
	opacity: 0.8;
}

.second-cloud {
	top: 2.5%;
	left: 15%;
}

.ground {
	height: 40%;
	background: #DACCC1;
	position: relative;
}

.tumbleweed-wrapper {
	height: 12.5%;
	position: absolute;
	top: -25%;
	left: -25%;
}

@media (max-width: 500px) {
	.tumbleweed-wrapper {
		left: -50%;
	}
}

.tumbleweed {
	display: block;
	fill: #CC9966;
	stroke: #CC9966;
}

.shadow {
	width: 10%;
	background: rgba(0, 0, 0, 0.5);
	margin: -3% auto;
	border-radius: 100%;
	height: 10px;
}

.error-404 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	text-align: center;
}


.error-404 .buttons-container {
	margin-top: 35px;
	overflow: hidden;
	display: flex;
	justify-content: center;
}

.error-404 .buttons-container a {
	transition: text-indent .2s ease-out, color .2s linear, background-color .2s linear;
	text-indent: 0px;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	background-color: #005893;
	border-radius: 99px;
	padding: 8px 0 8px;
	text-align: center;
	display: inline-block;
	overflow: hidden;
	position: relative;
	width: 45%;
	max-width: 100px;
	
}

.error-404 .buttons-container a:hover {
	text-indent: 15px;
}

.error-404 .buttons-container a:nth-child(1) {
	margin-right: 20px;
}

.error-404 .buttons-container a:nth-child(2) {
	
}