* {
	box-sizing: border-box;
}
body {
	background: #ffffff;
	background: linear-gradient(to bottom, #ffffff 0%, #dbeafe 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dbeafe',GradientType=0 );
	height: 100%;
	margin: 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.thanks-container {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.wrapper-2 {
	padding: 30px;
	text-align: center;
}
h1 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 4em;
	letter-spacing: 3px;
	color: rgb(25, 73, 24);
	margin: 0;
	margin-bottom: 20px;
	font-weight: 700;
}
.wrapper-2 p {
	margin: 0;
	font-size: 1.3em;
	color: #64748b;
	font-family: 'Bebas Neue', sans-serif;
	letter-spacing: 1px;
	line-height: 1.6;
}
.go-home {
	background: rgb(25, 73, 24);
	border: 2px solid #ffffff;
	color: #ffffff;
	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: 8px;

	display: flex;
	align-items: center;
	justify-content: center;
}
.go-home:hover {
	background: transparent;
	border-color: rgb(25, 73, 24);
	color: rgb(25, 73, 24);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}
a:hover .go-home {
	color: rgb(25, 73, 24);
}
.go-home a {
	text-decoration: none;
	color: #fff;
}

.footer-like {
	margin-top: auto;
	background: #dbeafe;
	padding: 6px;
	text-align: center;
}
.footer-like p {
	margin: 0;
	padding: 4px;
	color: rgb(25, 73, 24);

	letter-spacing: 1px;
}
.footer-like p a {
	text-decoration: none;
	color: rgb(25, 73, 24);
	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: 0 20px 40px rgba(37, 99, 235, 0.1);
		border-radius: 20px;
		background: #ffffff;
	}
}
