* {
	box-sizing: border-box;
}
body {
    background: linear-gradient(135deg, #0e120d 0%, #1a2316 100%);
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Ysabeau SC', sans-serif;
    color: #edf9ef;
}

.wrapper-1 {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
}
.wrapper-2 {
	padding: 30px;
	text-align: center;
}
h1 {
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 3.2em;
    letter-spacing: 2px;
    color: #9ee493;
    margin: 0;
    margin-bottom: 20px;
}
.wrapper-2 p {
	margin: 0;
	font-size: 1.3em;
    color: #cde9cf;
    font-family: 'Ysabeau SC', sans-serif;
	letter-spacing: 1px;
}
.go-home {
    background: #cc5500;
    border: 2px solid #cc5500;
    color: #0e120d;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 12px;
	padding: 14px 42px;
	margin-top: 42px;
	margin-right: 12px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	visibility: visible;
	animation-delay: 2.3s;
	animation-name: fadeInUp;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 0;
}
.go-home:hover {
    background: transparent;
    border-color: #cc5500;
    color: #cc5500;
}
a:hover .go-home {
	color: #d4d109;
}
.go-home a {
	text-decoration: none;
	color: #fff;
}

.footer-like {
	margin-top: auto;
    background: #0e120d;
	padding: 6px;
	text-align: center;
}
.footer-like p {
	margin: 0;
	padding: 4px;
    color: #9ee493;
    font-family: 'Ysabeau SC', sans-serif;
	letter-spacing: 1px;
}
.footer-like p a {
	text-decoration: none;
    color: #9ee493;
	font-weight: 600;
}

@media (min-width: 360px) {
	h1 {
		font-size: 4.5em;
	}
	.go-home {
		margin-bottom: 20px;
	}
}

@media (min-width: 600px) {
	.content {
		max-width: 1000px;
		margin: 0 auto;
	}
	.wrapper-1 {
		height: initial;
		max-width: 620px;
		margin: 0 auto;
		margin-top: 50px;
		box-shadow: 4px 8px 40px 8px lightgray;
	}
}
