* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	position: relative;
	margin: 0;
	padding: 0;
	min-height: 100vh;
	padding: 16px;
}
body::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	background-image: url("/img/bgst1.webp");
	filter: blur(5px);
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.wrapper {
	text-align: center;
	width: 100%;
	margin-top: 0;
}
.title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 12px;
}
.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	background-color: #dba236;
	padding: 16px;
	border-radius: 15px;
	color: #000;
	font-weight: bold;
	font-size: 18px;
	transition: all 0.3s ease;
	max-width: 350px;
	margin: 0 auto;
}
.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	background-color: #a57620;
}
.links {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
}
.links a {
	text-decoration: none;
	color: white;
	font-size: 20px;
	&:hover {
		color: rgb(247, 198, 93);
	}
}
@media (min-width: 450px) {
	.wrapper {
		margin-top: 250px;
	}
}
@media (min-width: 744px) {
	.wrapper {
		margin-top: 200px;
	}
	.title {
		font-size: 26px;
		margin-bottom: 40px;
	}
	.btn {
		font-size: 22px;
	}
}
@media (min-width: 1200px) {
	.title {
		font-size: 32px;
	}
	.btn {
		font-size: 22px;
	}
}
